01.
ListView2.Groups.Add(
"Group1"
,
"รอบที่ 1"
)
02.
ListView2.Groups.Add(
"Group2"
,
"รอบที่ 2"
)
03.
04.
For
i
As
Integer
= 0
To
ListView2.Items.Count - 1
05.
If
ListView2.Items(i).Text = rd(
"Timeq"
)
Then
06.
ListView2.Items(i).Group = ListView2.Groups(1)
07.
Else
08.
ListView2.Items(i).Group = ListView2.Groups(0)
09.
End
If
10.
Next