Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP 6 trouble with paths 1

Status
Not open for further replies.

button71

Programmer
Nov 8, 2006
69
AU
<sigh>
I've just forgotten how to see the path as set at the moment , in the debugger.

I'm not finding a table when I open a form.

Anyone help?

William
 
William,

CURDIR() gives the current setting of the default directory (without the drive letter).

SYS(5) gives the drive letter.

SET("PATH") gives the full list of directories in the search path. I think that's the one you want.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My Visual FoxPro site: www.ml-consult.co.uk
 
Sys(5)+Sys(2003) = Current default path

Addbs(Justpath(Sys(16))) = Path of the starting program
 
Thanks everyone.

Mike had the one I wanted ( to see what paths had been set when in the debugger - SET("PATH")


William
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top