Is there an simpler way to determine the disk drive your application is running on than using something like App.Path and then just taking the first four characters on the left?
VB Code:
strPath = App.Path strPath = Left(strPath, 4)
Printable View
Is there an simpler way to determine the disk drive your application is running on than using something like App.Path and then just taking the first four characters on the left?
VB Code:
strPath = App.Path strPath = Left(strPath, 4)
Quote:
Originally Posted by bat711
Actually just this would work:
VB Code:
Left$(App.Path, 3)
Cheers,
RyanJ