Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Development Mode
Message
From
14/10/2020 09:04:43
 
 
To
14/10/2020 08:10:03
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01676646
Message ID:
01676651
Views:
65
Hi,
Apart from Tore's usefull correct information there is also version() , if version(2) is returning 2 you are in development if version(2) returns 0 you are in Run time.
usufull if you want to have 2 different settings of your path depending on the version.
e.g.
Set Path To []
? SET('path')
*** Go ahead and set the path
If Version(2) # 0
	***  We are in Development Mode
	***  Set up Project search path
	m.lcPath = Home() + ';' + Fullpath( Curdir() ) + [Class;  Data; Forms; Images ; Menu; Progs ; Reports; ReportingFiles]

Else
	*** We are in Production Mode
	*** Set up application search paths
	m.lcPath = Fullpath( Curdir() ) + [ ;Reports ; ReportingFiles]
Endif
Stay healthy,
Koen
>I'd like to bypass code while in development mode only.
>
>I'm fairly certain there's a way VFP knows it's running under development mode as opposed to running the EXE.
>
>Any help?
>
>Thanks,
>Rich Murillo
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform