25 lines
408 B
ObjectPascal
25 lines
408 B
ObjectPascal
|
|
unit EBarMDIDemoAbout;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
||
|
|
Dialogs, StdCtrls, ExtCtrls, ComCtrls, EBarsAbout;
|
||
|
|
|
||
|
|
type
|
||
|
|
TEBarMDIDemoAboutForm = class(TEBarsAboutForm)
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
EBarMDIDemoAboutForm: TEBarMDIDemoAboutForm;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
end.
|