You've already forked lazarus-ccr
33 lines
377 B
ObjectPascal
33 lines
377 B
ObjectPascal
![]() |
unit mainform;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
||
|
StdCtrls;
|
||
|
|
||
|
type
|
||
|
|
||
|
{ TForm2 }
|
||
|
|
||
|
TForm2 = class(TForm)
|
||
|
Button1: TButton;
|
||
|
private
|
||
|
{ private declarations }
|
||
|
public
|
||
|
{ public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
Form2: TForm2;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
initialization
|
||
|
{$I mainform.lrs}
|
||
|
|
||
|
end.
|
||
|
|