modlinkdemo.dpr
来自「ModLink VCL component 组件以及代码。版本是sharewar」· DPR 代码 · 共 44 行
DPR
44 行
{*****************************************************************}
{ }
{ 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 + =
减小字号Ctrl + -
显示快捷键?