A
Able
Dear friends
Items is added like this
Dim itmx As New ListViewItem
itmx = ListView1.Items.Add("Title", 0)
itmx.SubItems.Add("1")
itmx.SubItems.Add("2")
itmx.SubItems.Add("3")
The item "2" is added in row one in second column and "3" is added in row
one in third column. But is it possible to add item "2" in row one in third
column and add "3" in row one in second column without rearranging the
sequence in designtime. In other words is it possibly to programaticly
determine the column?
Regards Able
Items is added like this
Dim itmx As New ListViewItem
itmx = ListView1.Items.Add("Title", 0)
itmx.SubItems.Add("1")
itmx.SubItems.Add("2")
itmx.SubItems.Add("3")
The item "2" is added in row one in second column and "3" is added in row
one in third column. But is it possible to add item "2" in row one in third
column and add "3" in row one in second column without rearranging the
sequence in designtime. In other words is it possibly to programaticly
determine the column?
Regards Able