Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Linking several forms in one project

Status
Not open for further replies.

baha

Programmer
Apr 16, 2002
28
US
Hi,

I have several forms, and i have to put them into one project. I will have one start up window with the buttons, which link to different forms. how i can link this buttons to differnt forms. Another question is how i can link one form to another, so two or more forms will be open at the same time.

Thanks
 
In the event handlers for the buttons, you can load the other forms.


sub cmdButton1_Click

Load frmForm2
frmForm2.Show

End Sub
Good Luck
------------
Select * from Users where Clue > 0
0 rows returned
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top