avacondios Active Member Licensed User Longtime User Jul 5, 2014 #1 Hi, Is it possible to set a global variable on module properties and change the value of this variable on program execution ?
Hi, Is it possible to set a global variable on module properties and change the value of this variable on program execution ?
stevel05 Expert Licensed User Longtime User Jul 5, 2014 #2 If by module properties you mean a variable declared in Process_Globals sub, then yes, just assign it a new value. Upvote 0
If by module properties you mean a variable declared in Process_Globals sub, then yes, just assign it a new value.
avacondios Active Member Licensed User Longtime User Jul 5, 2014 #3 stevel05 said: If by module properties you mean a variable declared in Process_Globals sub, then yes, just assign it a new value. Click to expand... No, I mean to change the module attributes....example #Region Module Attributes #FullScreen: False #End Region to change the fullscreen from false to true by a global variable Upvote 0
stevel05 said: If by module properties you mean a variable declared in Process_Globals sub, then yes, just assign it a new value. Click to expand... No, I mean to change the module attributes....example #Region Module Attributes #FullScreen: False #End Region to change the fullscreen from false to true by a global variable
NJDude Expert Licensed User Longtime User Jul 5, 2014 #4 That's not possible. There are some pseudo-solutions but do not really work, read HERE for more details. Even the immersive mode found on KitKat has some issues, read THIS. Upvote 0
That's not possible. There are some pseudo-solutions but do not really work, read HERE for more details. Even the immersive mode found on KitKat has some issues, read THIS.