📄 selfxsml.dpr
字号:
program selfXsml;
{ TCompress V3.0 "Tiny" self-extracting EXE example -- only comments changed from V2.5
This program uses the same approach (and doInstal unit) as
does the SELFEXTR.DPR unit. Hence, refer to the instructions
at the top of SELFEXTF.PAS for setup instructions.
Note:
Because no form is involved, this program will be
far *smaller* than SELFEXTR.EXE. The downside is that
it has no user interaction, although you could use Windows
MessageBox calls to at least display a confirmation message.
}
{$R *.RES}
{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\system.drawing.dll'}
uses
doInstal;
const PROG_NAME = 'notepad.exe';
README_NAME = 'readme.txt';
begin
DoInstall('',PROG_NAME, README_NAME); { into the CURRENT directory! }
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -