windows listbox help

Started by
1 comment, last by ostamo1 19 years, 7 months ago
i am trying to delete every thing in a list box with this function i want all the lines deleted at once i do not want to have to press the button three times any suggestions please i am new to windows programming

void vRemoveText()
{
	int Line;
	// determine number of items in listbox
	Line = SendMessage(hLB_Output, LB_GETCOUNT, 0, 0);
	// add string to the listbox
	for (int x = 0; x < Line; x++) 
	{
		SendMessage(hLB_Output, LB_DELETESTRING, Line-1, 0);
				Line-=1;
	}
}


Advertisement
Just use SendMessage(hLB_Output, LB_RESETCONTENT, 0, 0);. It'll be much faster and easier.
thanks your rating++

This topic is closed to new replies.

Advertisement