by "harkawy" <harkawy@[EMAIL PROTECTED]
>
Dec 22, 2004 at 07:48 PM
By the way, the event handler looks like this:
procedure TUM2001.Edit1KeyDown(Sender: TObject; var Key: Word;
****ft: T****ftState);
begin
if key = 13 then
Begin
Key := 9;
Edit2.SetFocus;
End;
end;
If I step through the procedure, the beep won't occur until I step past
the last "end;" when the focus goes to the next TEdit.