Start process in panel
If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
5 posts
Page 1 of 1
Hi just wondering if anyone knows how to start a program in a panel I don't mean like notepad
I want to start a program that is already in my program if you get me so I want to use a panel as a parent and then my program.show as a child
I want to start a program that is already in my program if you get me so I want to use a panel as a parent and then my program.show as a child
Do you mean you want to display a second Form in your panel? In that case, you could do the following:
Code: Select all
Pretty sure that's how it goes lol. I'm on mobile right now so I can't confirm.Dim f As New Form2
f.TopLevelControl = False
Panel1.Controls.Add(f)
f.Show()
its telling me property is read only for the
f.toplevelcontrol = false
f.toplevelcontrol = false
5 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023