CListCtrl::InsertColumn
-
Hello, I have taken a List Ctrl on a dialog box. I have to add 3 subcolumns below the column. I m using InsertColumn method for adding new column but for adding subcolumn, I don't know how to pass 'nSubItem' parameter. Plz tell me how to pass 'nSubItem' parameter? I m using Microsoft Visual Studio 6.00 Thands in advance Nikesh
-
Hello, I have taken a List Ctrl on a dialog box. I have to add 3 subcolumns below the column. I m using InsertColumn method for adding new column but for adding subcolumn, I don't know how to pass 'nSubItem' parameter. Plz tell me how to pass 'nSubItem' parameter? I m using Microsoft Visual Studio 6.00 Thands in advance Nikesh
What do you mean by subcolumn? If you want to fill the columns with data, use
InsertItem
to add a row and thenSetItem
to put values into the other columns of the inserted row.«_Superman_»