delphi 7 生成 调用 bat文件的exe文件
Posted pengchenggang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 7 生成 调用 bat文件的exe文件相关的知识,希望对你有一定的参考价值。
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); begin Application.ShowMainForm:=False; // //MessageBox(Handle,‘警告信息框‘,‘警告信息框‘,MB_ICONWARNING); //WinExec(‘C:UsersAdministratorAppDataLocalGoogleChromeApplicationchrome.exe‘,sw_normal); WinExec(‘kk.bat‘,SW_HIDE); //Close; application.terminate; end; end.
delphi 7 下载地址 http://www.pc0359.cn/downinfo/66072.html
以上是关于delphi 7 生成 调用 bat文件的exe文件的主要内容,如果未能解决你的问题,请参考以下文章
求教在delphi中,如何把一个exe做为res加入到dll中,并在运行时生成exe文件执行