unidacdemo.dpr
来自「CrLab UniDAC 1.0 include sources」· DPR 代码 · 共 40 行
DPR
40 行
program UniDacDemo;
{$I Base\DacDemo.inc}
uses
Forms,
CategoryFrame in 'Base\CategoryFrame.pas' {CategoryFrame},
DemoBase in 'Base\DemoBase.pas',
DemoForm in 'Base\DemoForm.pas' {DemoForm},
DemoFrame in 'Base\DemoFrame.pas' {DemoFrame},
HtmlConsts in 'Base\HtmlConsts.pas',
UniDacDemoForm in 'Base\UniDacDemoForm.pas' {UniDACForm},
UniDacAbout in 'Base\UniDacAbout.pas' {UniDacAboutForm},
ParamType in 'Base\ParamType.pas' {ParamTypeForm},
CachedUpdates in 'CachedUpdates\CachedUpdates.pas' {CachedUpdatesFrame: TFrame},
{$IFDEF CRDBGRID}
CRDBGrid in 'CRDBGrid\CRDBGrid.pas' {CRDBGridFrame: TFrame},
{$ENDIF}
FilterAndIndex in 'FilterAndIndex\FilterAndIndex.pas' {FilterAndIndexFrame: TFrame},
MasterDetail in 'MasterDetail\MasterDetail.pas' {MasterDetailFrame: TFrame},
Query in 'Query\Query.pas' {QueryFrame: TFrame},
Pictures in 'Pictures\Pictures.pas' {PicturesFrame: TFrame},
Sql in 'Sql\Sql.pas' {SqlFrame: TFrame},
StoredProc in 'StoredProc\StoredProc.pas' {StoredProcFrame: TFrame},
Table in 'Table\Table.pas' {TableFrame: TFrame},
Text in 'Text\Text.pas' {TextFrame: TFrame},
UpdateSQL in 'UpdateSQL\UpdateSQL.pas' {UpdateSQLFrame: TFrame},
UpdateAction in 'CachedUpdates\UpdateAction.pas' {UpdateActionForm},
VTable in 'VirtualTable\VTable.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TUniDACForm, UniDACForm);
Application.CreateForm(TUpdateActionForm, UpdateActionForm);
Application.CreateForm(TUniDacAboutForm, UniDacAboutForm);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?