git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@2 b6239004-a887-0f4b-9937-50029ccdca16
27 lines
554 B
ObjectPascal
27 lines
554 B
ObjectPascal
unit CalcFields_ServerMain;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,
|
|
uROClient, uROPoweredByRemObjectsButton, uROClientIntf, uROServer,
|
|
uROBinMessage, uROIndyHTTPServer;
|
|
|
|
type
|
|
TCalcFields_ServerMainForm = class(TForm)
|
|
RoPoweredByRemObjectsButton: TROPoweredByRemObjectsButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
CalcFields_ServerMainForm: TCalcFields_ServerMainForm;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|