R roarnold Active Member Licensed User Longtime User Apr 6, 2013 #1 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
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 Apr 6, 2013 #2 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
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