On one activity in my app the label click event does not work.
As usual, from the Designer I add a label view Label1, then from Tools/Generate Members I select/checkmark the label name and the Click option, and then Generate Members. This adds Label1 as Label to Globals and creates the sub and end sub for Label1_Click in the code.
And in the sub I have some code for what the app should do when the label is clicked.
But when I run the app and touch/click the label, it doesn't raise the sub event. It doesn't go to the sub and execute the commands in the sub.
In debug mode I put a breakpoint in the Label1_Click sub to verify this. The program execution never gets to the breakpoint to halt there. It just completely ignores whenever the label is clicked during program execution and never goes to the sub to perform the commands there.
This problem only occurs on one activity of the app. And only for labels. Other clickable views on that same activity work fine, and labels on other activities in the same app work fine.
I can work around this problem by using buttons instead of labels, but it just bugs me that labels won't click on that one activity!
Any suggestions?
As usual, from the Designer I add a label view Label1, then from Tools/Generate Members I select/checkmark the label name and the Click option, and then Generate Members. This adds Label1 as Label to Globals and creates the sub and end sub for Label1_Click in the code.
And in the sub I have some code for what the app should do when the label is clicked.
But when I run the app and touch/click the label, it doesn't raise the sub event. It doesn't go to the sub and execute the commands in the sub.
In debug mode I put a breakpoint in the Label1_Click sub to verify this. The program execution never gets to the breakpoint to halt there. It just completely ignores whenever the label is clicked during program execution and never goes to the sub to perform the commands there.
This problem only occurs on one activity of the app. And only for labels. Other clickable views on that same activity work fine, and labels on other activities in the same app work fine.
I can work around this problem by using buttons instead of labels, but it just bugs me that labels won't click on that one activity!
Any suggestions?