i need to get the letter of the users hard drive and store it in a variable. thanks in advance.
Printable View
i need to get the letter of the users hard drive and store it in a variable. thanks in advance.
use GetLogicalDriveStrings (an API function)
the declaration is:
Declare Function GetLogicalDriveStrings Lib "kernel32.dll" Alias "GetLogicalDriveStringsA" (ByVal
nBufferLength As Long, ByVal lpBuffer As String) As Long
:)