2008-10-31 21:18:20 +00:00
|
|
|
unit EXINSTU;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2023-02-20 17:36:51 +00:00
|
|
|
SysUtils, Classes, Graphics, Forms, Dialogs, StdCtrls, Buttons, Controls;
|
2008-10-31 21:18:20 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
{ TFirstInstFrm }
|
|
|
|
|
|
|
|
TFirstInstFrm = class(TForm)
|
|
|
|
BitBtn2: TBitBtn;
|
2023-02-20 11:17:45 +00:00
|
|
|
Info: TLabel;
|
2008-10-31 21:18:20 +00:00
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
FirstInstFrm: TFirstInstFrm;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2023-02-20 17:36:51 +00:00
|
|
|
{$R *.lfm}
|
2008-10-31 21:18:20 +00:00
|
|
|
|
|
|
|
end.
|