New Form vs Inherited Form

  • Thread starter Thread starter John
  • Start date Start date
What is the difference between a New Form and an Inherited Form?

Thanks
John


----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---

Easy, all forms are inherited. "New" forms are inherited from the base
class Forms. The only true "New" form would be if you built one 100% from
the ground up. I think what you may be looking for is inheriting a form
from another form, and there, there's some nifty stuff that goes on there.
Say you have some controls anad code that you need multiple forms to use.
build a form, then make a "new" form and inherit the one you just made.
Hope I didn't add more confusion to your questions...

HTH
Sueffel
 
What is the difference between a New Form and an Inherited Form?

A new form will inherit from 'System.Windows.Forms.Form', an "inherited
form" will inherit from a custom base form. Forms which inherit from
the 'Form' class are inherited forms too.
 
Back
Top