|
-
Jun 17th, 2010, 09:28 AM
#1
Thread Starter
Junior Member
[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
-
Jun 17th, 2010, 10:28 AM
#2
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?
-
Jun 17th, 2010, 10:45 AM
#3
Thread Starter
Junior Member
Re: Working with modules and forms
Is an app for mobile, however i think it applies also to non mobile.
Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|