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