|
-
September 6th, 1999, 09:29 AM
#1
List Control
How do you add an item to a list control that spans multiple coloms?
from
Wingman
-
September 6th, 1999, 08:35 PM
#2
Re: List Control
Look at RowList on vc++ online help.
Your best VC++ friend, Jacky!
[email protected]
-
September 7th, 1999, 01:28 AM
#3
Re: List Control
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|