HI..
I got 2 comboBoxes, when i select the 1st item in 1st combobox, then will list all sub items in 2nd combobox. Data can be in database or in program. Got any guideline or reference...
Thanks!
Cheers! Danny
|
Go4Expert Founder
|
![]() |
| 23Dec2004,10:13 | #2 |
|
To fill the combobox you need to use its AddString property. Attach a CComboBox control to the combo box and use the AddString property to add the necessary strings depending on the option selected in the first combo.
Thanks and I hope it helps. Shabbir Bhimani |
|
Newbie Member
|
|
| 23Dec2004,10:24 | #3 |
|
Quote:
Originally Posted by shabbir When i selected "A", 2nd combobox only list out "A1","A2","A3" only.... Please advise! thanks! |
|
Go4Expert Founder
|
![]() |
| 23Dec2004,17:55 | #4 |
|
so are you asking at what event should you use the above code.
|
|
Newbie Member
|
|
| 27Dec2004,06:09 | #5 |
|
Quote:
Originally Posted by shabbir oid CIDComboDemoDlg::OnSelchangeCombo1() { m_eFruitVal = (eEnumeratedFruit)m_combo.GetCurSelData(); switch (m_eFruitVal) { case eBanana: m_descriptionWnd.SetWindowText("Banana"); for (int i=0;i < 20;i++) { pmyComboBox->AddString("Malaysia"); } break; case eApple: m_descriptionWnd.SetWindowText("Apple"); for (int i=0;i < 20;i++) { pmyComboBox->AddString("Malaysia"); } break; Last edited by dannygan9; 27Dec2004 at 06:21.. |
|
Go4Expert Founder
|
![]() |
| 27Dec2004,09:39 | #6 |
|
Yes its currently looks correct to me.
|
|
Newbie Member
|
|
| 27Dec2004,11:05 | #7 |
|
Quote:
Originally Posted by shabbir void CIDComboDemoDlg::OnSelchangeCombo1() { m_eFruitVal = (eEnumeratedFruit)m_combo.GetCurSelData(); switch (m_eFruitVal) { case eBanana: for (int i=0;i < 20;i++) { m_combo1->AddString("YELLOW");break; //BUT PROGRAM HANG AFTER I SELECT "BANANA", } } } m_combo1->AddString("YELLOW");break //THIS ONE I LIKE TO INSERT AT 2ND COMBOBOX, BUT WILL HANG WILL HANG AT HERE! |
|
Go4Expert Founder
|
![]() |
| 27Dec2004,12:13 | #8 |
|
It should not hand but add 20 times and come out. I guess the error is at some other point.
|
|
Ambitious contributor
|
|
| 31Dec2004,14:29 | #9 |
|
Moderator,DOn't you think this wrong forum for posting queries.
this subforum is for posting project not queries.there separate forum for posting Queries Thanks |
|
Go4Expert Founder
|
![]() |
| 31Dec2004,17:01 | #10 |
|
I did not notice that. Now its Moved.
|

