You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8724 8e941d3f-bd1b-0410-a28a-d453659cc2b4
29 lines
359 B
ObjectPascal
29 lines
359 B
ObjectPascal
unit EXINSTU;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, Graphics, Forms, Dialogs, StdCtrls, Buttons, Controls;
|
|
|
|
type
|
|
|
|
{ TFirstInstFrm }
|
|
|
|
TFirstInstFrm = class(TForm)
|
|
BitBtn2: TBitBtn;
|
|
Info: TLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
FirstInstFrm: TFirstInstFrm;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
end.
|