disqlite3_world_clientdataset.dpr
来自「DELPHI 访问SQLITE3 数据库的VCL控件」· DPR 代码 · 共 21 行
DPR
21 行
program DISQLite3_World_ClientDataSet;
uses
Forms,
DISQLite3_World_Common in 'DISQLite3_World_Common.pas' {frmWorld_Common},
DISQLite3_World_ClientDataSet_Form in 'DISQLite3_World_ClientDataSet_Form.pas' {frmWorld};
{$R *.res}
{$R XpManifest.res}
begin
with Application do
begin
Initialize;
Title := APP_TITLE;
CreateForm(TfrmWorld, frmWorld);
Run;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?