(10-12-2009, 02:50 AM)k1ll3r Wrote: Yes I'm currently using the visible=false method but that gets very messy as i need to add more labels etc... how would i go about loading and unloading new forms?
thanks
You can create new forms and add them to your project, I assume you know how to do that
Now in the Button_Click sub, you insert
Code:
Dim newForm as frmPage2
newForm.show
where frmPage2 is the name of the form you want to show
with if checks you can load different forms then