How do you add an item to a list control that spans multiple coloms?
from
Wingman
Printable View
How do you add an item to a list control that spans multiple coloms?
from
Wingman
Look at RowList on vc++ online help.
Your best VC++ friend, Jacky!
[email protected]
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