|  | 
| LVCOLUMN lvc; ZeroMemory (&lvc, sizeof (LVCOLUMN));
 
 lvc.pszText = "column1";
 lvc.fmt = LVCFMT_CENTER;
 lvc.cx = 80; // Column width
 lvc.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_FMT;
 ListView_InsertColumn (hListView, 0,&lvc); // Insert the first column
 lvc.pszText = "column2"; // Column header
 ListView_InsertColumn (hListView, 1,&lvc); // Insert the second column
 lvc.pszText = "column3";
 ListView_InsertColumn (hListView, 2,&lvc); // Insert the third column
 | 
 |