git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@2 b6239004-a887-0f4b-9937-50029ccdca16
26 lines
409 B
ObjectPascal
26 lines
409 B
ObjectPascal
unit fMainForm;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, uROPoweredByRemObjectsButton;
|
|
|
|
type
|
|
TForm1 = class(TForm)
|
|
ROPoweredByRemObjectsButton1: TROPoweredByRemObjectsButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
Form1: TForm1;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|