Class Call

roarnold

Active Member
Licensed User
Longtime User
I am making a call to CustomListView using -

CallSub(GetPanel, "RefreshData")

Is this correct? GetPanel is in red thought and fails during compile.

Thanks,
R
 

mangojack

Expert
Licensed User
Longtime User
To access views contained within a CLV panel i use the following .. (4 labels in each panel)

B4X:
Dim pnl As Panel
pnl = CLV1.GetPanel(numRow)

Dim lbl4 As Label   
lbl4 = pnl.GetView(3)
lbl4.Text = "New Text Value"

Cheers mj
 
Upvote 0
Top