Aug 17, 2003 #1 Gert Programmer Apr 9, 2000 240 DO Hi all, How could i open a dialogue box that askme for a network drive and set dthe path to it I've been trying with : set path to z: asuming that "z:" is the work drive but NOT RESULT ALL. thanks in advance
Hi all, How could i open a dialogue box that askme for a network drive and set dthe path to it I've been trying with : set path to z: asuming that "z:" is the work drive but NOT RESULT ALL. thanks in advance
Aug 17, 2003 #2 baltman Technical User Mar 5, 2002 1,578 US You don't have to refer by drive letter. You can use SET DEFAULT TO \\ServerName\Path Brian Upvote 0 Downvote
Aug 18, 2003 #3 ramani Programmer Mar 15, 2001 4,336 AE Hi myPath = JUSTPATHGETDIR("","","",16384)) Look in this thread also... How to include networked PCs in the GETFILE()??? thread184-605262 ramani (Subramanian.G) http://winnersoft.coolfreepages.com/ Upvote 0 Downvote
Hi myPath = JUSTPATHGETDIR("","","",16384)) Look in this thread also... How to include networked PCs in the GETFILE()??? thread184-605262 ramani (Subramanian.G) http://winnersoft.coolfreepages.com/
Aug 18, 2003 #4 ramani Programmer Mar 15, 2001 4,336 AE Hi myPath = GETDIR("","","",64)) Sorry for the error in my previous post (error in cut & paste.) ramani (Subramanian.G) http://winnersoft.coolfreepages.com/ Upvote 0 Downvote
Hi myPath = GETDIR("","","",64)) Sorry for the error in my previous post (error in cut & paste.) ramani (Subramanian.G) http://winnersoft.coolfreepages.com/
Aug 18, 2003 #5 Eguy Programmer Dec 22, 2000 566 US myPath = GETDIR("","","",64)) Remove the extra parenthesis. Also note that this is only valid in VFP 7 & 8 Ed Please let me know if the suggestion(s) I provide are helpful to you. Sometimes you're the windshield... Sometimes you're the bug. Upvote 0 Downvote
myPath = GETDIR("","","",64)) Remove the extra parenthesis. Also note that this is only valid in VFP 7 & 8 Ed Please let me know if the suggestion(s) I provide are helpful to you. Sometimes you're the windshield... Sometimes you're the bug.
Aug 18, 2003 Thread starter #6 Gert Programmer Apr 9, 2000 240 DO Hi, i'm using VFP 5.0 and I need to get a network drive and store it on a dbf, or how to get a path in a network. I try to use ChrisRChamberlain option, but only return path on the same machine not when i look on a network drive. thanks Upvote 0 Downvote
Hi, i'm using VFP 5.0 and I need to get a network drive and store it on a dbf, or how to get a path in a network. I try to use ChrisRChamberlain option, but only return path on the same machine not when i look on a network drive. thanks
Aug 18, 2003 #7 Eguy Programmer Dec 22, 2000 566 US Gert; Look at the FAQ ==> faq184-2343 Ed Please let me know if the suggestion(s) I provide are helpful to you. Sometimes you're the windshield... Sometimes you're the bug. Upvote 0 Downvote
Gert; Look at the FAQ ==> faq184-2343 Ed Please let me know if the suggestion(s) I provide are helpful to you. Sometimes you're the windshield... Sometimes you're the bug.
Aug 20, 2003 #8 TheMissionary IS-IT--Management Jan 7, 2003 13 CA Have you tried mapping the drive? VFP 5, 6, 7 & 8 all see a mapped drive as it would the C drive. Upvote 0 Downvote
Aug 21, 2003 #9 jimoo Programmer Jun 2, 2003 1,111 US I also use the followiong. SET PATH TO ADDBS(SYS(5)+SYS(2003)) If it a good habit to include the ADDBS (add backslash) function in case the drive is on the root. Upvote 0 Downvote
I also use the followiong. SET PATH TO ADDBS(SYS(5)+SYS(2003)) If it a good habit to include the ADDBS (add backslash) function in case the drive is on the root.