26 lines
493 B
ObjectPascal
26 lines
493 B
ObjectPascal
unit FetchServerMain;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,
|
|
uDAPoweredByDataAbstractButton, uROPoweredByRemObjectsButton;
|
|
|
|
type
|
|
TFetchServerMainForm = class(TForm)
|
|
DAPoweredByDataAbstractButton1: TDAPoweredByDataAbstractButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
FetchServerMainForm: TFetchServerMainForm;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|