Thanks needo will try
Main Topics
Browse All TopicsI have a main form with a panel and three buttons. I have 3 other forms so when the user clicks button 1 on the main form, form 1 will display in the panel. When user clicks button 2, the panel clears and displays form 2. etc. I have tried this code in the buttons;
**************************
Dim temp As New Form2
pnlMain.Controls.Clear()
pnlMain.Controls.Add(temp
**************************
however am getting error message "Top-level control cannot be added to a control." I have TopMost set to false in the forms I want to load. Can someone fix my code for me?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: needo_jeePosted on 2009-10-07 at 03:49:33ID: 25513872
Hi,
You can't add forms to panel.
You should create user controls instead of those 3 forms.