S
sixeight
Unregistered / Unconfirmed
GUEST, unregistred user!
最好不要在OnExit事件中。
例如:
if Edit1.Text <> 'ABC' then
begin
ShowMessge('error');
Edit1.SetFocuse;
end
如果写在OnExit事件中,我用按钮的快捷键(不用鼠标)时,则不会判断。我应该怎么写呢?
例如:
if Edit1.Text <> 'ABC' then
begin
ShowMessge('error');
Edit1.SetFocuse;
end
如果写在OnExit事件中,我用按钮的快捷键(不用鼠标)时,则不会判断。我应该怎么写呢?