?? modlinkdemo.dpr
字號:
{*****************************************************************}
{ }
{ ModLink }
{ Copyright (C) 2002 - 2007 Ing. Ivo Bauer }
{ All Rights Reserved. }
{ }
{ Web site: http://www.ozm.cz/ivobauer/modlink/ }
{ E-mail: ivo.bauer@tiscali.cz | bauer@ozm.cz }
{ }
{ For a detailed information regarding the distribution and use }
{ of this software product, please refer to the License Agreement }
{ embedded in the accompanying online documentation (ModLink.chm) }
{ }
{*****************************************************************}
program ModLinkDemo;
{$I ModLink.inc}
//--------------------------------------------------------------------------------------------------
uses
Forms,
ModLinkDemoMain in 'ModLinkDemoMain.pas' {ModLinkDemoMainForm},
ServerItemEditor in 'ServerItemEditor.pas' {ServerItemEditorForm},
ServerItem in 'ServerItem.pas';
//--------------------------------------------------------------------------------------------------
{$R *.res}
{$IFDEF COMPILER_7_UP}
{$R WindowsXP.res}
{$ENDIF COMPILER_7_UP}
//--------------------------------------------------------------------------------------------------
begin
Application.Initialize;
Application.Title := 'ModLink Demo';
Application.CreateForm(TModLinkDemoMainForm, ModLinkDemoMainForm);
Application.Run;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -