For i=0 To clv1.Size-1
If clv1.GetPanel(i).GetView(0).Text.Contains("e") Then 'getview(0) is the first label in the clv item
clv1.GetPanel(i).Visible=False
Else
clv1.GetPanel(i).Visible=True
End If
Next
For i=0 To clv1.Size-1
If clv1.GetPanel(i).GetView(0).Text.Contains("e") Then 'getview(0) is the first label in the clv item
clv1.GetPanel(i).Visible=False
Else
clv1.GetPanel(i).Visible=True
End If
Next
CLV is an interface element. A good and flexible design is to separate the interface from the data. This means that you should have a regular List (or any other collection) that stores all the items and you should add or remove items from the CLV as needed.
CLV is an interface element. A good and flexible design is to separate the interface from the data. This means that you should have a regular List (or any other collection) that stores all the items and you should add or remove items from the CLV as needed.