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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Enviornment Vars in EB 1

Status
Not open for further replies.

0wned

Technical User
Jul 27, 2004
5
US
Are there Enviornment Variables in EB? At various times druing an atachmate extra session my username is used to identify things such as comments, or modifications I have made... Are there any enviornment varibles such as one for user names and such? It looks like it's all server-side...

Thanks,

Jon
 
Yes, the Environ() function works as in other languages.

Target = Environ("AppData")

returns the users App Data path.

To see a list, use a loop and write to a file:

Open "C:\Environ.txt" for append as #1
For X = 0 to 100
write #1, Environ(X)
Next X
Close

calculus
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top