1.

 1 program Project1;
 2 
 3 uses
 4   Vcl.Forms,
 5   Unit1 in 'Unit1.pas' {Form1},
 6   Unit2 in 'Unit2.pas' {Form2};
 7 
 8 {$R *.res}
 9 
10 begin
11   Application.Initialize;
12   Application.MainFormOnTaskbar := True;
13   if Login() then
14     Application.CreateForm(TForm1, Form1);
15   Form1.Caption := '登录成功';
16   Application.Run;
17 end.
View Code

相关文章:

  • 2021-11-17
  • 2021-11-14
  • 2021-06-11
  • 2021-08-12
  • 2021-11-03
  • 2022-12-23
  • 2021-12-05
  • 2021-12-28
猜你喜欢
  • 2021-10-24
  • 2022-12-23
  • 2022-01-07
  • 2022-12-23
  • 2021-12-27
相关资源
相似解决方案