Documentation

setglobal

Syntax: %setglobal(name,value)

set the value of the global variable name (stored in the INI file). A variable stored with %setglobal can only be retreived using %getglobal and has no relationship with other variables stored in your package files. The data is not actually written to the INI file on disk until TeSSH exits, so data can be lost if TeSSH crashes. The #SAVE command can be used to force the INI file contents to be saved.

setglobal Example:

#CALL %setglobal("MyName","Zugg")
#SHOW %getglobal("MyName")
Displays: "Zugg"

After exiting TeSSH, if you inspect the contents of the TeSSH.INI file, you will find the following data:

[User]
MyName=Zugg

Add comment

Login or register to post comments