Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Tell me drive mapped to 'lrl5emd6'
Message
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00890107
Message ID:
00890111
Views:
33
This message has been marked as the solution to the initial question of the thread.
>Isn't there some sort of scripting filesystemobject technique to id a drive letter for an application on the users pc?

Would this work for you?
oNet = CREATEOBJECT("wscript.network")
oDrives = oNet.EnumNetworkDrives()
FOR i=0 TO oDrives.Count-1 STEP 2
	? oDrives.Item[i], oDrives.Item[i+1]
ENDFOR
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform