-
1 Attachment(s)
Custom Control
This may be a stupid question but I gotta ask.
Here is the screen shot of the control I made. Well actually it isn't one control yet but several other controls put together. So my question is how do I make these controls into one, and wrap it up into a dll or ocx for reusablity in Visual Studio?
Maybe an easy question, but it's something that I've just haven't done yet!:)
Thanks for any help!
-
Looks pretty cool .Did you try making in a user control library which outputs a dll wrapping up all the controls in one control .
-
You can create a 'class library' project then create a public 'component' or 'user control' that wraps all the 'private/public' individual components. Once you compile the project, a .dll file will be created as output. Then you can add whatever you have created into toolbox in form design from the .dll file.
-
Great I'll try both of those. It does't sound to tough, like I said I've never made a custom control before. At least now I have a direction to go.
Thanks for the replies:)