Click to See Complete Forum and Search --> : List Control


Wing Man
September 6th, 1999, 09:29 AM
How do you add an item to a list control that spans multiple coloms?

from
Wingman

JackyTellYou
September 6th, 1999, 08:35 PM
Look at RowList on vc++ online help.

Your best VC++ friend, Jacky!
cardit@bigfoot.com

Burlacu Ovidiu
September 7th, 1999, 01:28 AM
Try this:

list.InsertItem( next_item_nr, your_text) //this add an item and fill first column
for( int i = 1; i < no_clos_of_list; i++)
{
list.SetItemText(next_item_nr, i, text_for_col_i);
}




Let me know if this help u
Regards,
Ovidiu