Is it possible to have my comboBox, numericUpDown, and ListBox connected together?

I want to make the numericUpDown to be the limit of the choices that you could made taht will be displayed in the listbox. For example:

  • If numericUpDown == 2 then,
  • comboBox == 5 choices. You Can Choose 2. Your first choice shouldn't be included in your second lookthrough of the combobox. then,
  • listbox == 2. (The listbox should only contain data. Depending on the value of the numericUpDown) So if the user choose again in the combobox the datas in the list box wouldn't be affected.

How might I implement this?

link|improve this question

1  
yes you can do all of this. you will have to work with selectedItemChanged event of combo box and for the numericUpDown I guess there is an OnChange event. start doing something than edit your question with your code and more specific questions if you are stuck on anything specific. – Davide Piras Sep 6 '11 at 14:00
You need to be more specific here. C# is a language, not a presentation framework. Please make it clear whether you're talking about Winforms/WPF/Silverlight or something else. – Stimul8d Oct 7 '11 at 11:10
feedback

1 Answer

up vote 0 down vote accepted

C# has most of the useful controls but sometimes what you need is not there. You can always make your own controls or just add a little coding to get what you want. Nothing Is Impossible. Here is a simple way to make your own Control and then use it in your program. http://www.codeproject.com/KB/miscctrl/first_control.aspx

link|improve this answer
Thank You Very Much! – rj tubera Nov 27 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.