用程序示例演示的DELPHI教程

以下是一个DELPHI教程的示例项目文件:

program Project1;

uses
  Forms, Unit1 in 'Unit1.pas' {Form1};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

当添加表单和单元时,它们将出现在uses子句中。

ppt 文件大小:2.29MB