Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Mapping a drive
Message
From
26/01/2009 15:11:28
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Miscellaneous
Thread ID:
01377112
Message ID:
01377119
Views:
23
>A routine that must run is coded to look for a mapped drive "Y" and to enforce the mapping
>the following code is used
>
> 'RUN /N net use Y: \\nn.nn.nn.nn\directory_name'
>
>
>
>
>however this flashed the command window black box for an instant.
>
>How can we stop the flashing of the black box?
>
>Thanks in advance
if !directory('y:')
   wshshell=CREATEOBJECT('wscript.shell')
   wshnetwork=CREATEOBJECT('wscript.network')
   wshnetwork.MapNetworkDrive('y:','\\myserver\mypath',.f.,'Username','Password')
   wshnetwork=.null.
   release wshnetwork
Endif
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform