In my previous knowledge of programming, i used to use global.variable = true
how could i achieve this so the variable could be used across all forms?
Printable View
In my previous knowledge of programming, i used to use global.variable = true
how could i achieve this so the variable could be used across all forms?
Add a module to the project, add the variable as public to the module:
Code:Public Module SomeModule
Public variable As Boolean = True
End Module