SetGlobal

Top  Previous  Next

 Prototype

 

SetGlobal(strVariableName)

 

Description

 

It makes the variable always usable.

 

Parameters

 

strVariableName: it corresponds to the initializing variable that will be considered as string, so, to insert  in quotation marks.

 

Returned value

 

None.

 

Example

 

//it recalls variable "Counter"

GetGlobal(Counter);

 

//It increases the variable

Inc(Counter);

 

// It sets the current variable value as global

SetGlobal('Counter');