Q
qlw
Unregistered / Unconfirmed
GUEST, unregistred user!
请看如下代码,我想在按下button后,输入焦点从edit1转到edit2,但是
好象不行。两个edit都没有了焦点
procedure TForm1.Button1Click(Sender: TObject);
var hh:hwnd;
begin
hh:=getfocus;
if hh=edit1.handle then
windows.SetFocus(edit2.handle);
end;
好象不行。两个edit都没有了焦点
procedure TForm1.Button1Click(Sender: TObject);
var hh:hwnd;
begin
hh:=getfocus;
if hh=edit1.handle then
windows.SetFocus(edit2.handle);
end;