delphi 软件welcome窗口代码


本文整理自网络,侵删。

 program dxG10000;

uses
  Forms,
  main in 'main.pas' {fmMain},
  splash in 'splash.pas' {fmSplash},
  dxGridMenus in '../DemoUtils/dxGridMenus.pas';

{$R *.RES}

begin
  fmSplash := TfmSplash.Create(nil);  //欢迎窗口
  try
    fmSplash.Show;
    fmSplash.Update;
    Application.CreateForm(TfmMain, fmMain);
  finally
    fmSplash.Free;
    fmSplash := nil;
  end;
  Application.Run;
end.

相关阅读 >>

Delphi多线程程序示例

Delphi 位运算

Delphi常用日期函数

Delphi android权限

Delphi idftp发送本机ip和外网ip

Delphi 获取计算机串口列表

Delphi获得系统当前时间日期和格式化时间

Delphi实现百度地图经纬度与地址互转

Delphi将文件的内容读取为字符串

Delphi取得trichedit的光标当前位置

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...