I have 2 forms in my project explorer:
form1.vb and form2.vb
On form1 I have a button and an on_click event that states
form2 appears but none of my labels or buttons show up on it.
Is the code just creating an instance of a blank form? (which would explain the missing controls). Its the first time I've tried to use a second form in .net. Needless to say its driving me crazy HA.
Thanks
Dan
form1.vb and form2.vb
On form1 I have a button and an on_click event that states
Code:
dim form2 as new.form
form2.show
form2 appears but none of my labels or buttons show up on it.
Is the code just creating an instance of a blank form? (which would explain the missing controls). Its the first time I've tried to use a second form in .net. Needless to say its driving me crazy HA.
Thanks
Dan