|
|
Title | Get the program's current drive and directory |
Keywords | current, drive, directory |
Categories | Files and Directories |
|
|
Use the CurDir function.
|
|
Private Sub Form_Load()
lblCurDir.Caption = Mid$(CurDir, 3)
lblCurDrive.Caption = Left$(CurDir, 1)
End Sub
|
|
Formatted by
Neil Crosby
|
|
|
|
|
|