USUÁRIO:      SENHA:        SALVAR LOGIN ?    Adicione o VBWEB na sua lista de favoritos   Fale conosco 

 

  Dicas

  Visual Basic    (Arquivos/Diretórios)

Título da Dica:  Pegar o Diretório do Windows
Postada em 8/10/2000 por Webmaster      Clique aqui para enviar email para o autor  webmaster@vbweb.com.br
'NUM MÓDULO:
Private Const MAX_PATH As Long = 260
Private Declare Function GetWindowsDirectory Lib _
        "kernel32" Alias "GetWindowsDirectoryA" _
        (ByVal lpBuffer As String, ByVal nSize As _
        Long) As Long

Public Function GetWinDir() As String
  Dim strFolder As String
  Dim lngResult As Long
  strFolder = String(MAX_PATH, 0)
  lngResult = GetWindowsDirectory(strFolder, MAX_PATH)
  If lngResult <> 0 Then
    If Right(Left(strFolder, lngResult), 1) = "\" Then
      GetWinDir = Left(strFolder, lngResult)
    Else
      GetWinDir = Left(strFolder, lngResult) & "\"
    End If
  Else
    GetWinPath = ""
  End If
End Function

'P/ CHAMAR:
MsgBox "O Diretório do Windows é: " & GetWinDir, _
       vbOKOnly + 64, "Local do Diretório do Windows"
 


CyberWEB Network Ltda.    © Copyright 2000-2024   -   Todos os direitos reservados.
Powered by HostingZone - A melhor hospedagem para seu site
Topo da página