How can I hold a value in memory after I have exited a subprocedure?
Printable View
How can I hold a value in memory after I have exited a subprocedure?
make a module, declare a variable (ex: public Blah as string), then just assign a value and call on it later (ex: Blah = "Another Blah". Label1.caption = Blah)
Note: Never put "" around a variable.
Hope this is what you were looking for.