tcpserverpro.dpr
来自「《delphi数据库设计与实例开发》随书光盘」· DPR 代码 · 共 18 行
DPR
18 行
program TCPServerPro;
uses
Forms,
TCPServerForm in 'TCPServerForm.pas' {Form1},
TCPServerPro_TLB in 'TCPServerPro_TLB.pas',
TCPServerModule in 'TCPServerModule.pas' {TCPServer: TRemoteDataModule} {TCPServer: CoClass};
{$R *.TLB}
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?