<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > BuiltIn Functions > Application functions > App > Environ > App.Environ.* |
Description
Retrieve information from the current program's environment table.
Syntax
sValue = APP.Environ.*
Returns
Number
Parameters
Name |
Type |
Optional |
Meaning |
* |
String |
No |
Substitute * with any existing computer environment name. |
Remarks
Restrictions
See also
Examples
uses "console"
printl "Environ User:", app.environ.UserName
printl "Environ UserDomain:", app.environ.UserDomain
printl "Environ Path:", app.environ.Path
WaitKey