Click here to Skip to main content
15,903,175 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Clearing the edit box in ccombobox Pin
David Crow27-Sep-06 10:48
David Crow27-Sep-06 10:48 
AnswerRe: Clearing the edit box in ccombobox Pin
lctrncs27-Sep-06 11:38
lctrncs27-Sep-06 11:38 
QuestionRe: Clearing the edit box in ccombobox Pin
David Crow28-Sep-06 2:44
David Crow28-Sep-06 2:44 
AnswerRe: Clearing the edit box in ccombobox Pin
lctrncs27-Sep-06 11:42
lctrncs27-Sep-06 11:42 
GeneralRe: Clearing the edit box in ccombobox Pin
David Crow28-Sep-06 2:46
David Crow28-Sep-06 2:46 
GeneralRe: Clearing the edit box in ccombobox Pin
lctrncs28-Sep-06 3:54
lctrncs28-Sep-06 3:54 
GeneralRe: Clearing the edit box in ccombobox Pin
David Crow28-Sep-06 4:07
David Crow28-Sep-06 4:07 
GeneralRe: Clearing the edit box in ccombobox Pin
lctrncs28-Sep-06 7:10
lctrncs28-Sep-06 7:10 
Thanks for all your help!

However,

DavidCrow wrote:
m_cb.InsertString(0, "");m_cb.SetCurSel(0);


appears to solve the clearing problem only for the Dropdown Style combobox (providing much more acceptable appearance), but sadly does not clear the edit box for the Drop List style. Confused | :confused:

In drop list mode my OnSelchangeCombo function sends a WM_SETTEXT right before leaving the function and ignoring:

->InsertString(0,"",0); //(overridden InsertString)
->SetWindowText("");
->SetDlgItemText( IDC_COMBO, "")

even though it executes lines like:

->GetCurSel();

immediately before the ->InsertString etc.

Subsequent attempts in my DisplayDialog function to clear the Drop List edit box employing the

->InsertString(0,"",0); //(overridden InsertString)
->SetWindowText("");
->SetDlgItemText( IDC_COMBO, "")

edit box are also unsuccessful.

Could the Drop List style be refusing to allow me to change the edit box because I have the "Owner Draw" selection set to "No?"

Thanks again for your assistance to date.

I appreciate it a great deal.




"For a successful technology, reality must take precedence over public relations, for nature cannot be fooled." Richard Feynman, Minority Report to the Official Report on the Space Shuttle Challenger Crash

QuestionRe: Clearing the edit box in ccombobox Pin
David Crow28-Sep-06 7:44
David Crow28-Sep-06 7:44 
AnswerRe: Clearing the edit box in ccombobox Pin
lctrncs28-Sep-06 10:15
lctrncs28-Sep-06 10:15 
GeneralRe: Clearing the edit box in ccombobox Pin
David Crow28-Sep-06 10:34
David Crow28-Sep-06 10:34 
GeneralRe: Clearing the edit box in ccombobox Pin
lctrncs28-Sep-06 12:46
lctrncs28-Sep-06 12:46 
QuestionRe: Clearing the edit box in ccombobox Pin
David Crow29-Sep-06 2:40
David Crow29-Sep-06 2:40 
AnswerRe: Clearing the edit box in ccombobox Pin
lctrncs29-Sep-06 5:11
lctrncs29-Sep-06 5:11 
QuestionRe: Clearing the edit box in ccombobox Pin
David Crow29-Sep-06 5:18
David Crow29-Sep-06 5:18 
AnswerRe: Clearing the edit box in ccombobox Pin
lctrncs29-Sep-06 5:44
lctrncs29-Sep-06 5:44 
GeneralRe: Clearing the edit box in ccombobox Pin
Zac Howland29-Sep-06 3:40
Zac Howland29-Sep-06 3:40 
GeneralRe: Clearing the edit box in ccombobox Pin
lctrncs29-Sep-06 5:19
lctrncs29-Sep-06 5:19 
QuestionRe: Clearing the edit box in ccombobox Pin
David Crow29-Sep-06 5:59
David Crow29-Sep-06 5:59 
AnswerRe: Clearing the edit box in ccombobox Pin
lctrncs29-Sep-06 6:31
lctrncs29-Sep-06 6:31 
QuestionRe: Clearing the edit box in ccombobox Pin
David Crow29-Sep-06 6:02
David Crow29-Sep-06 6:02 
AnswerRe: Clearing the edit box in ccombobox Pin
lctrncs29-Sep-06 6:49
lctrncs29-Sep-06 6:49 
GeneralRe: Clearing the edit box in ccombobox Pin
David Crow29-Sep-06 7:14
David Crow29-Sep-06 7:14 
GeneralRe: Clearing the edit box in ccombobox Pin
lctrncs29-Sep-06 11:20
lctrncs29-Sep-06 11:20 
GeneralRe: Clearing the edit box in ccombobox Pin
David Crow2-Oct-06 2:44
David Crow2-Oct-06 2:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.