clp
February 28th, 2000, 02:44 PM
How can I hold a value in memory after I have exited a subprocedure?
|
Click to See Complete Forum and Search --> : Hold value in memory clp February 28th, 2000, 02:44 PM How can I hold a value in memory after I have exited a subprocedure? Atlantisoft February 28th, 2000, 02:47 PM 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. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |