Advertisement

Help is C++/Windows

Started by October 05, 1999 11:48 AM
2 comments, last by Enix 25 years, 2 months ago
Question: Are you using MFC or just plain Windows API?

--TheGoop

Currently im using MFC, but ive tried it without MFC and had no luck. My program hasn't taken well at being migrated to normal windows. So to answer your question im using MFC.
Advertisement
Im a begginer to c++/visualc++ and ive run into a prob: how in the world do I add items to a list box? say i have a listbox with the id of IDC_TEST. how would i add the item "test"(as a char array) to the list box?
thanks for reading! any help will be gratefully accepted! -Enix

[This message has been edited by Enix (edited October 04, 1999).]

Use AddString().
Format:
int AddString( LPCTSTR lpszItem );

String is appended to the list unless you have the sort flag on (LBS_SORT).

If you want it in a certain spot, use InsertString().

By the way, the MSVC help that comes with the compiler is really spiffy for finding this stuff... also http://www.codeguru.com for general MFC-related information.

-fel

~ The opinions stated by this individual are the opinions of this individual and not the opinions of her company, any organization she might be part of, her parrot, or anyone else. ~

This topic is closed to new replies.

Advertisement