I'm in the process of re-writing some Pascal V7.0 software using Delphi
3. On my TabbedNotebook, I have numerous TEdits that tab from one to
the next. I added "if Char(key) = #13 then Edit2.SetFocus;" within the
Edit1KeyDown procedure to read the Enter key so that the program will
advance to the next TEdit. If I press the Enter key to move to the
next TEdit the "Beep" is heard but not if I tab. How do I get rid of
that darn "Beep"? I figure it must be somewhere in TEdits parentage
where a test for characters is performed like "Set of Char =
['A'..'Z','a'..'z','0'..'9',#13,#27]" I'd like to remove the #13 from
the test that which calls the Beep.
Any help would be most appreciated.
Harvey