I have a program where I'm using a varible across several forms. where whould i declare this varible so that i can use it across several forms and not loos it's value?
Printable View
I have a program where I'm using a varible across several forms. where whould i declare this varible so that i can use it across several forms and not loos it's value?
Declare it in the Module as Public
ie
Code:'In module (general declarations section)
Public Variable As String