unit fServerForm; interface uses SysUtils, Types, Classes, Variants, QTypes, QGraphics, QControls, QForms, QDialogs, QStdCtrls, uROClient, uROPoweredByRemObjectsButton, uROClientIntf, uROServer, $MESSAGEUNIT, $SERVERUNIT; type TServerForm = class(TForm) ROMessage: TRO$MSGCLSNAME; ROServer: TRO$SRVCLSNAME; private { Private declarations } public { Public declarations } end; var ServerForm: TServerForm; implementation {$R *.xfm} end.