AndreyPozdnyakov
Member
Hello.
I have:
Sub Globals
Dim lstViews As List
Here's how I form a List:
Sub Activity_Create(FirstTime As Boolean)
lstViews.Initialize
For Each vw As View In Activity
lstViews.Add(vw)
Next
As a result, I would like to track the Click event to various objects, the ImageView is especially important to me: I want the images to respond to Click.
But this procedure does not work:
Sub lstViews_Click
Dim vw As View
vw = Sender
I have:
Sub Globals
Dim lstViews As List
Here's how I form a List:
Sub Activity_Create(FirstTime As Boolean)
lstViews.Initialize
For Each vw As View In Activity
lstViews.Add(vw)
Next
As a result, I would like to track the Click event to various objects, the ImageView is especially important to me: I want the images to respond to Click.
But this procedure does not work:
Sub lstViews_Click
Dim vw As View
vw = Sender