Click here to Skip to main content
15,886,137 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Tab key doesn't work right [modified] Pin
Stephen Hewitt29-Sep-10 8:35
Stephen Hewitt29-Sep-10 8:35 
GeneralRe: Tab key doesn't work right Pin
garyflet29-Sep-10 10:16
garyflet29-Sep-10 10:16 
GeneralRe: Tab key doesn't work right Pin
Stephen Hewitt29-Sep-10 20:10
Stephen Hewitt29-Sep-10 20:10 
QuestionMCI playback ended Pin
MikeRWinter29-Sep-10 2:26
MikeRWinter29-Sep-10 2:26 
AnswerRe: MCI playback ended Pin
MikeRWinter29-Sep-10 4:37
MikeRWinter29-Sep-10 4:37 
AnswerRe: MCI playback ended Pin
Cool_Dev29-Sep-10 4:38
Cool_Dev29-Sep-10 4:38 
GeneralRe: MCI playback ended Pin
MikeRWinter29-Sep-10 4:54
MikeRWinter29-Sep-10 4:54 
QuestionRedimension CComboBox Pin
mesajflaviu29-Sep-10 1:23
mesajflaviu29-Sep-10 1:23 
I have a CComboBox control :
CComboBox* pCombo = (CComboBox*)GetDlgItem(IDC_COMBO1);

and here I fill it :
pCombo->AddString("One");
pCombo->AddString("Two");
pCombo->AddString("Three");
pCombo->AddString("Four");
pCombo->AddString("Five");

and here , in drop down state I want to delete an item ( or two ) :
pCombo->ShowDropDown(TRUE);
pCombo->DeleteString(2);
pCombo->DeleteString(3);

my question is : how can I redimension the drop down window to fit remain items ?

I solve this in dirty way :
pCombo->ShowDropDown(FALSE);
pCombo->ShowDropDown(TRUE);

but is not elegant and in some systems flikering ... can you help me ?
AnswerRe: Redimension CComboBox Pin
Eugen Podsypalnikov29-Sep-10 1:38
Eugen Podsypalnikov29-Sep-10 1:38 
GeneralRe: Redimension CComboBox Pin
mesajflaviu29-Sep-10 2:01
mesajflaviu29-Sep-10 2:01 
GeneralRe: Redimension CComboBox Pin
Eugen Podsypalnikov29-Sep-10 2:18
Eugen Podsypalnikov29-Sep-10 2:18 
GeneralRe: Redimension CComboBox Pin
mesajflaviu29-Sep-10 2:42
mesajflaviu29-Sep-10 2:42 
GeneralRe: Redimension CComboBox Pin
Eugen Podsypalnikov29-Sep-10 2:58
Eugen Podsypalnikov29-Sep-10 2:58 
GeneralRe: Redimension CComboBox Pin
mesajflaviu29-Sep-10 8:14
mesajflaviu29-Sep-10 8:14 
GeneralRe: Redimension CComboBox Pin
Eugen Podsypalnikov29-Sep-10 10:53
Eugen Podsypalnikov29-Sep-10 10:53 
QuestionRe: Redimension CComboBox Pin
David Crow29-Sep-10 3:08
David Crow29-Sep-10 3:08 
AnswerRe: Redimension CComboBox Pin
mesajflaviu29-Sep-10 8:12
mesajflaviu29-Sep-10 8:12 
QuestionRe: Redimension CComboBox Pin
David Crow29-Sep-10 8:16
David Crow29-Sep-10 8:16 
GeneralRe: Redimension CComboBox Pin
Cool_Dev29-Sep-10 4:18
Cool_Dev29-Sep-10 4:18 
GeneralRe: Redimension CComboBox Pin
mesajflaviu29-Sep-10 8:15
mesajflaviu29-Sep-10 8:15 
AnswerRe: Redimension CComboBox Pin
Rolf Kristensen29-Sep-10 9:44
Rolf Kristensen29-Sep-10 9:44 
GeneralRe: Redimension CComboBox Pin
mesajflaviu30-Sep-10 20:09
mesajflaviu30-Sep-10 20:09 
QuestionWindows Service cannot access mapped network drive Pin
Ranojay28-Sep-10 21:43
Ranojay28-Sep-10 21:43 
AnswerRe: Windows Service cannot access mapped network drive Pin
Sauro Viti28-Sep-10 21:53
professionalSauro Viti28-Sep-10 21:53 
GeneralRe: Windows Service cannot access mapped network drive Pin
Ranojay28-Sep-10 22:31
Ranojay28-Sep-10 22:31 

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.