Skip to content

Instantly share code, notes, and snippets.

@Pasquina
Last active August 18, 2016 03:10
Show Gist options
  • Save Pasquina/d6a2076b9c0d915e014381213cdb2e02 to your computer and use it in GitHub Desktop.
Save Pasquina/d6a2076b9c0d915e014381213cdb2e02 to your computer and use it in GitHub Desktop.
procedure TfVKLogger.FormKeyDown(
Sender: TObject;
var Key: Word;
var KeyChar: Char;
Shift: TShiftState);
begin
if Key = vkReturn then // if Return pressed
begin
Key := vkTab; // change the key to a Tab (causes navigation)
KeyDown(Key, KeyChar, Shift); // execute the form's keydown to effect navigation
end;
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment