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