[RESOLVED] Working with modules and forms
Hi. First of all i would like to say that i'm not a dev and all i learned in VB was just surfing and not really learn as i should. This way sometimes i have really basic dobuts, like this one.
The problem is: I have a var defined in Private Sub Form1_Load Main() . Private Sub Button1_Click i want to get it's value . (all in public class form1)
How can i do it?
Thanks
Re: Working with modules and forms
Something like
vb.net Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MessageBox.Show(VarYouDeclared)
End Sub
Is this a general VB.NET question (which it appears to be) or something uniquely specific to mobile development?
Re: Working with modules and forms
Is an app for mobile, however i think it applies also to non mobile.
Thanks