Creating custom controls for .Net 2003

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I would like to create a couple of custom controls which I would be
able to add to my Toolbox in .Net 2003. Would this be a long process
if so are there any examples out there that would outline this process
for me?

Thanks!
 
Luck, there in www.codeproject.co

You'll can find some examples....but I can say you that is too easy, you just have to create a Windows Control Library, and you'll see ... try it.
 
Just follow these steps to populate the toolbox with your controls.

1) Start a new WindowsControlLibrary Project
2) Right click on the project and choose "Add User Control"
3) Choose the name of the control
4) Compile

Now click on the toolbox and there will be a new category for all of your
controls


--
Jared Parsons [MSFT]
(e-mail address removed)
This posting is provided "AS IS" with no warranties, and confers no rights.
OR if you wish to include a script sample in your post please add "Use of
included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm"
 
Back
Top