How do I assign ONE Click event to all the buttons on my popup keyboard? I will use the Tag property to hold the key character or even a 'command' for the action like backspace.
The keyboard is a Panel with all the buttons and a Label 'hbGet' with global scope. Once the basics are done it will hopefully be converted to a class.
B4X:
Sub btn_Click
hbGet.Text = hbGet.Text & btn.Tag ' Add to string
End Sub
The keyboard is a Panel with all the buttons and a Label 'hbGet' with global scope. Once the basics are done it will hopefully be converted to a class.