You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
299 B
Plaintext

program Qxsz;
uses
Forms,
lcxQxsz in 'lcxQxsz.pas' {frmLcxQxsz},
u_sys_login in 'u_sys_login.pas' {frm_sys_login};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmLcxQxsz, frmLcxQxsz);
Application.CreateForm(Tfrm_sys_login, frm_sys_login);
Application.Run;
end.