Hi everyone, I would like to ask if anyone knows where they can inform me if it is possible to do what I need.
I currently have a CLV, the elements of the CLV are composed of image inside a panel and with each click I intercept the value present in the tag.
Now I should add a second image inside the element present in the CLV and with each click I should understand which image they clicked between the two.
Can it be done?
Thanks to anyone who can give me a tip
Now I should add a second image inside the element present in the CLV and with each click I should understand which image they clicked between the two.
Type imageTag(val As String, isSecondImage As Boolean)
...
Dim imageTag1 As imageTag
imageTag1.Initialize
imageTag1.val = "something"
imageTag1.IsInitialized = False
And then set 'isSecondImage' to True or False to indicate the image that was clicked.
Now I should add a second image inside the element present in the CLV and with each click I should understand which image they clicked between the two.