User Control Tutorial
-
Hello I'm looking for a good tutorial about user control I need to learn the purpose (I have an idea) and how to design it Thank you for your suggestions / Help
http://msdn.microsoft.com/en-us/library/a6h7e207(VS.80).aspx[^] Would be the best place to start...
-Spacix All your skynet questions[^] belong to solved
-
Hello I'm looking for a good tutorial about user control I need to learn the purpose (I have an idea) and how to design it Thank you for your suggestions / Help
Try doing an article search on this site. Some good ones are bound to pop up :)
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
Try doing an article search on this site. Some good ones are bound to pop up :)
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
http://msdn.microsoft.com/en-us/library/a6h7e207(VS.80).aspx[^] Would be the best place to start...
-Spacix All your skynet questions[^] belong to solved
-
It's a joke ? I make severall search here Nothing interesting pop-up I've tried : user control tutorial use control design
Are you a joke? A better search would have been for 'custom control' but searching the site for articles containing 'user control' in the beginners section gets this: http://www.codeproject.com/info/search.aspx?artkw=user+control&sbo=kw[^] Try result number 5 EDIT: Never mind, it doesn't remember the Attribute Filter options using the link. So I will sadly have to provide you with a direct link: http://www.codeproject.com/KB/miscctrl/cutebutton.aspx[^] Next time, try a little harder.
My current favourite word is: Nipple!
-SK Genius
-
Hello I'm looking for a good tutorial about user control I need to learn the purpose (I have an idea) and how to design it Thank you for your suggestions / Help
tutorials i dont know (tell me if you find a good one), but i ussually use usercontrol to fill up form like pages, that way i avoid creating many forms, you may try that later on. About using usercontrols for creating buttons, i never needed so far, but there are here in codeproject article that teach you how to create a particular usercontrol like a button or a combobox or a calendar, better you download one of those! keyword: create usercontrol button calendar :wtf:
nelsonpaixao@yahoo.com.br trying to help & get help
-
tutorials i dont know (tell me if you find a good one), but i ussually use usercontrol to fill up form like pages, that way i avoid creating many forms, you may try that later on. About using usercontrols for creating buttons, i never needed so far, but there are here in codeproject article that teach you how to create a particular usercontrol like a button or a combobox or a calendar, better you download one of those! keyword: create usercontrol button calendar :wtf:
nelsonpaixao@yahoo.com.br trying to help & get help
-
Thank you nelsonpaixao Yest I need a complex control to provide address searching A feew combo, textbox etc Not a simple button I will continue to investigate how to do it well
You don't really need a tutorial, just have a go! 1. Create a test winforms app, right click and choose Add|User Control. 2. Handle any events from the controls just like you would in a form. 3. If you need to override any of the built in methods so it reacts externally in a different way then use the override keyword to override any of the base's virtual methods. 4. You can create your own properties, methods and events. If any conflict with the base's ones and they're not overridable, use the new keyword or rename your own to avoid the conflict. That's about it really. By deriving from UserControl (or Control or Component) MS have already done the hard work for you.
Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia) -
baranils wrote:
This not really a tutorial
If that tutorial was not good enough for you, what sort of tutorial are you looking for?
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns