-
1
- #1
How to get my ....
OS, PATH, HOMEPATH, USERNAME, USERDOMAIN, USERPROFILE, SYSTEMDRIVE, SYSTEMROOT, computername ETC ETC. FROM WITHIN VFP...???
The GETENV("myEnvironmentalVariable"
function returns the value of the environmental sttings of the system. But this is not very well documented, and many users resort to API functions.
To know which settings are available under the GETENV() function of VFP, can be obtained very easily in the following way.
Just reach the DOS prompt and type SET and press return key.
A list of variables with the values are listed. Now knowing the variables name, the values can be programatically obtained by using the code
myWantedVariableValue = GETENV("myEnvVariable"
===========================================================
A windows API function call to know all the environmental settings is also available under the following thread...
===========================================================
Hope the tek users find this information useful. I am providing this under the FAQ also, so that many of the users searching FAQ can use this. ramani :-9
(Subramanian.G)
FoxAcc
ramani_g@yahoo.com
OS, PATH, HOMEPATH, USERNAME, USERDOMAIN, USERPROFILE, SYSTEMDRIVE, SYSTEMROOT, computername ETC ETC. FROM WITHIN VFP...???
The GETENV("myEnvironmentalVariable"
To know which settings are available under the GETENV() function of VFP, can be obtained very easily in the following way.
Just reach the DOS prompt and type SET and press return key.
A list of variables with the values are listed. Now knowing the variables name, the values can be programatically obtained by using the code
myWantedVariableValue = GETENV("myEnvVariable"
===========================================================
A windows API function call to know all the environmental settings is also available under the following thread...
===========================================================
Hope the tek users find this information useful. I am providing this under the FAQ also, so that many of the users searching FAQ can use this. ramani :-9
(Subramanian.G)
FoxAcc
ramani_g@yahoo.com