inireloc.dpr
来自「支持版本:Delphi 5-2009, C++Builder 5-2009 A」· DPR 代码 · 共 26 行
DPR
26 行
{**********************************************}
{ }
{ Project: }
{ Ini Relocation Tool for Universal Viewer }
{ Copyright (C) 2006 Alexey Torgashin }
{ http://atorg.net.ru }
{ support@uvviewsoft.com }
{ }
{**********************************************}
program IniReloc;
uses
Forms,
UFormReloc in 'UFormReloc.pas' {FormReloc};
{$R *.RES}
{$R Res.IniReloc.RES}
begin
Application.Initialize;
Application.Title := 'Universal Viewer: Configuration files relocation tool';
Application.CreateForm(TFormReloc, FormReloc);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?