A single Activity loads a layout containing an xCustomListView (CLV1) that has the Visible property set to false so that it can be revealed later.
In the Sub Globals CLV1 is declared in the same manner as all the examples I have seen:
Private CLV1 As CustomListView
However, when I come to read or set the .Visible property the IDE will offer the command CLV1.AsView.Visible = True but it will not compile due to a type mismatch error.
How do I correctly read or set the .Visible property of a CustomListView in code?