Page 1 of 1
Global variables
Posted: Thu Nov 29, 2007 7:02 am
by meriturva
Any way to disable the global variable functionality?
We have some task and we just would like to don't care about the variable name between differrent tasks. Now we have to put attention on the name of variable if it is used on other tasks.
Meriturva
Global variables
Posted: Sun Dec 02, 2007 9:38 pm
by meriturva
no way?please just to know if it is possible to disable the global scope of variables!Meriturva
Global variables
Posted: Mon Dec 03, 2007 3:24 am
by Oleg
All user variables are global within RoboTask. Each task can access them and change them.
If you want to guarantee that variable is been use only in one task you must use unigue names. For example use some specific prefix.
Global variables
Posted: Sat Dec 08, 2007 9:03 pm
by RichardBlank
Oleg wrote:All user variables are global within RoboTask. Each task can access them and change them.
If you want to guarantee that variable is been use only in one task you must use unigue names. For example use some specific prefix.
Thank you Oleg. Helpful advice.