2
I’m having trouble capturing the key Enter
in the Android
begin
if(Key = 13)then
ShowMessage('Você teclou '+ KeyChar);//Para testar se estava capturando algo
end;
I only get feedback by pressing the delete text key. I also tried to
Uses AndroidApi.KeyCode
if(Key = AKEYCODE_ENTER)
But it didn’t work.
I’ve tried so much on KeyDown
how much in the KeyUp
At the event
KeyDown
trialif (Key = VK_RETURN)
– Augusto Vasques
Being quite honest, I don’t know which of the two measures worked, but I did so and changed in Edit the Returnkey property of Default p/other and was.
– Diego_F