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利用scrollbox实现图像漫游

Delphi 实现文件拖放完整代码

Delphi 创建win桌面快捷方式,实现360桌面图标数字提示 或 类似安卓的右上角的数字提示

delhi 获取进程图片

Delphi 对image字段存取图片、文件

Delphi几个进制相关的代码(hextoint、hextoasc)

Delphi hmacsha256

Delphi 两字符串之间添加分隔符

快速上手Delphi三十六计之输入处理篇

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



打赏

取消

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

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

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

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

评论

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