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编写iis过滤器实例

Delphi imagelist-图片(bmp)按名称而不按索引

Delphi 取得 ios 辅助使用里的字型大小

Delphi 判断文件存在的一个api函数

Delphi 列出所有可视窗口

Delphi xe firemonkey的几个特色属性

Delphi 如何解析网址?

Delphi 在statusbar1.panels上显示日期时间星期

Delphi dbexpress的upwherekeyonly的使用注意事项

Delphi获取外部程序菜单并模拟点击菜单

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



打赏

取消

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

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

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

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

评论

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