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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.