Form inheritance

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


Answer this question

Form inheritance

  • Cleiton Garcia

    Erathus wrote:
    Anyone an idea if form inheritance is possible in the C# Express Edition And how

    Just create a new form class and specify the form to inhire:


    public class MyNewForm : FormToInhire
    {
    ...



    Erathus wrote:
    And also, i need some info about the differences between the Express edition and the VS.NET 2005 professional edition. Major shortcommings etc...

    Here you go:
    http://msdn.microsoft.com/vstudio/products/compare/default.aspx



  • Parimal

    Thanx alot the both of you!

    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.



  • Form inheritance