INHERITED FORM

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

vb.net app(windows app)
I have 2 forms

form1 and form2

Could someone give me some code on how I would make form2 and inherited
form(kinda like the child form)

Thanks
 
Hi Bill,

Instead of inheriting from Form in Form2 class. Inherit from Form1 like
public class Form1 : System.Windows.Forms.Form
 
Hello,

bill said:
vb.net app(windows app)
I have 2 forms

form1 and form2

Could someone give me some code on how I would make
form2 and inherited form(kinda like the child form)

An inherited form is not a _child_ form. You can create an inherited form
by choosing "Add Inherited Form..." in the "Project" menu.
 
Back
Top