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
Global variables
no way?please just to know if it is possible to disable the global scope of variables!Meriturva
Global variables
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.
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.
-
- Posts: 1
- Joined: Sat Dec 08, 2007 8:49 pm
- Location: Costa Rica
- Contact:
Global variables
Thank you Oleg. Helpful advice.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.