Link to home
Start Free TrialLog in
Avatar of Murray Brown
Murray BrownFlag for United Kingdom of Great Britain and Northern Ireland

asked on

VB.net Embed form in other form

Hi

What is the best way to embed a form inside another form?
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Within the same application?...or embed an external form?
Avatar of Murray Brown

ASKER

In the same application
ASKER CERTIFIED SOLUTION
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi. I used the following code but still can't see the form in the panel

     Dim Form_GradientFiller As New frmGradientFiller
        Form_GradientFiller.TopLevel = False
        Globals.ThisAddIn.oAUTOMATOR.Panel_Forms.Controls.Add(Form_GradientFiller)
Do not forget to make the form visible by Form_GradientFiller.Show() otherwise you will not see it.
Thanks