Hi,
Anyone an idea if form inheritance is possible in the C# Express Edition And how
And also, i need some info about the differences between the Express edition and the VS.NET 2005 professional edition. Major shortcommings etc...
Greetz & thanx alot!
Vincent

Form inheritance
Cleiton Garcia
Just create a new form class and specify the form to inhire:
public class MyNewForm : FormToInhire
{
...
Here you go:
http://msdn.microsoft.com/vstudio/products/compare/default.aspx
Parimal
The option "inherited from form" (or something like) is not in visible in the designer, but it works when you specify the FormFromToInherit.
Cool & thanx alot!!
Greetz
Wuzz
I assume it should be. . .
right click your project. . .
In the add Items box, you should have an "Inherited Form" entry.
Only compiled forms will be available to inherit from, so build your project first.