![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Use ENTER key like as TAB key
Set the KeyPreview property of your form to True and use WM_NEXTDLGCTL message.
procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if Key=VK_RETURN then
Form1.Perform(WM_NEXTDLGCTL, 0, 0);
end;
-
More for developers