Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » VC++ / MFC » Combobox inhalt löschen

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
07.01.2003, 20:52 Uhr
~Klaus
Gast


Wie lösche ich den gesamten inhalt einer Combobox?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
07.01.2003, 21:00 Uhr
docreggae



Das steht in der MSDN dazu:

C++:
// The pointer to a combo box.
extern CComboBox* pmyComboBox;

// Delete every other item from the combo box.
for (int i=0;i < pmyComboBox->GetCount();i++)
{
   pmyComboBox->DeleteString( i );
}
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
07.01.2003, 21:01 Uhr
Uwe
C/C++ Master
(Administrator)


Hallo,

C++:
/* CComboBox    m_combo;*/
    m_combo.ResetContent();

--
"Es ist schwierig, ein Programm wirklich idiotensicher zu machen, weil Idioten so genial sind."

Bis dann...
Uwe
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ VC++ / MFC ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: