登陆窗口已经搜到相关资料了 是在
function TSystemInterface.ShowLogonForm(var ALogonID, APassword: string): Boolean;
begin
with TDLDHK.Create(nil) do
try
eName.Text := ALogonID;
ePass.Text := APassword;
if ShowModal = Business.Forms.Controls.mrOK then
begin
ALogonID := eName.Text;
APassword := ePass.Text;
Result := True;
Forms.Application.ProcessMessages;
end
else
Result := False;
finally
Free;
end;
end;
实现对吧