Thanks in Advance
Karl
Hi!
Try using the property KeyPreview := true (I think) from your main form.
It gets all keys from child controls. Just look for this property in the
online-help.
Ingo
Use the form's OnShortCut event.
Form1.KeyPreview := true;
procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
etc.
you'll need to set your edit box to read only.
hth
__
Ged