Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Change baseform on which my form is based?
Message
From
08/04/2008 19:02:40
Timothy Bryan
Sharpline Consultants
Conroe, Texas, United States
 
 
To
08/04/2008 16:57:01
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01309177
Message ID:
01309193
Views:
7
>I created a WinForm form from the out-of-the-box base form. How can I now re-define it to be based on a custom form clas my own class library that I want to build?
>
>
>Where would I go to tell the form what it is based on?

It is in the class definition
using MyClassLibrary;

public class myForm : MyClassLibrary.MyOwnFormBase
{
}

Or if VB

Imports MyClassLibrary

Public Class myForm
    Inherits MyClassLibrary.MyOwnFormBase

End Class
Is this what you mean?
Tim
Timothy Bryan
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform