科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件Delphi中的包(二):关于bpl

Delphi中的包(二):关于bpl

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文讲解Delphi中的包,关于bpl的部分

作者:soobey 来源:blog.csdn.net/soobey  2007年9月15日

关键字: Delphi BPL 软件

  • 评论
  • 分享微博
  • 分享邮件

写自己的dpk工程,以更改地检测我们的猜想。我们首先建立一个project group,包含三个工程:

program ProjectEXE;

uses

Forms,

Windows,

UnitFormMain in 'UnitFormMain.pas' {FormMain};

{$R *.res}

begin

Application.Initialize;

Application.CreateForm(TFormMain, FormMain);

Application.Run;

end.

unit UnitFormMain;

interface

uses

Windows, StdCtrls, Forms, Classes, Controls;

type

TFormMain = class(TForm)

Button1: TButton;

procedure Button1Click(Sender: TObject);

private

{ Private declarations }

public

{ Public declarations }

end;

var

FormMain: TFormMain;

implementation

{$R *.dfm}

procedure TFormMain.Button1Click(Sender: TObject);

var

LForm:TForm2;

begin

  LForm:=TForm2.Create(Application);

LForm.ShowModal;

LForm.Free;


end;

end.

package Package1;

requires

vcl,

rtl;

contains

UnitFormAnother in 'UnitFormAnother.pas' {FormAnother},

UnitForm1 in 'UnitForm1.pas' {Form1};

end.

unit UnitFormAnother;

interface

uses

Forms;

type

TFormAnother = class(TForm)

private

{ Private declarations }

public

{ Public declarations }

end;

implementation

{$R *.dfm}

end.

unit UnitForm1;

interface

uses

UnitFormAnother;

type

TForm1 = class(TFormAnother)

private

{ Private declarations }

public

{ Public declarations }

end;

implementation

{$R *.dfm}

end.

package Package2;

requires

rtl,

vcl;

contains

UnitForm2 in 'UnitForm2.pas' {Form2};

end.

unit UnitForm2;

interface

uses

UnitFormAnother;

type

TForm2 = class(TFormAnother)

private

{ Private declarations }

public

{ Public declarations }

end;

implementation

{$R *.dfm}

end.

小技巧:delphi对project group的编译是按照列表顺序从上到下进行的,因此在有些时候,被require或者use的文件如果在下面,那么可能会提示找不到文件。因此最好用文本编辑器调整一下bpg文件中的列表顺序。

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章