Somebody can to tell, what ASCII code of CTRL key for emulate pressing with Hardware lib?
I need to select all contents the TextBox -
It dont work
If to emulate to press a Ctrl+A with Hardware lib, that needs to be made so:
17 - is decimal value from hex value 0x11
but it dont work too...
:sign0085: please
I need to select all contents the TextBox -
B4X:
tbValue.Focus
tbValue.SelectionStart = 0
tbValue.SelectionStart = StrLength(tbValue.Text)
If to emulate to press a Ctrl+A with Hardware lib, that needs to be made so:
B4X:
tbValue.Focus 'TextBox
HW.KeyDown(17)
HW.KeyPress(Asc("A"))
HW.KeyUp(17)
URL from help - clickVK_CONTROL (0x11)
CTRL key
but it dont work too...
:sign0085: please