Hello,
I have a little problem with xCustomViewList version 1.20
Please take a look at the attached project.
If you click on an even Item (0, 2, 4, 6, and so on), the app show a MsgBox and it work perfect,
but if you click on a odd Item (1, 3, 5, 7 and so on) the app call another activity, you click on OK, but the Item clicked show "pressed color" and don't change to normal color.
Is it a bug on xCustomListView ???
I try also with xCustomListView version 1.50 but no change
Many thanks
Sergio
P.S.: another question about xCustomListView:
if I want to add a CustomListView on an Activity, how can I do it ??
This code don't work:
Sub Globals
Dim clv As CustomListView
End Sub
Sub Activity_Create(FirstTime As Boolean)
clv.Initialize("", "clv")
Activity.AddView(clv.AsView, 0, 0, 100%x, 100%y)
End Sub