Q:clear listbox hi i am working in VC++ 6 using Win32 App. .............tell me how to clear the listbox Re: clear listbox Send the listbox a LB_RESETCONTENT message. Code: SendMessage(handleListbox, LB_RESETCONTENT, 0, 0); reference: http://forums.c…