unit fPostings; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, ORCtrls; type TfrmPostings = class(TForm) pnlBase: TORAutoPanel; private { Private declarations } public { Public declarations } end; var frmPostings: TfrmPostings; implementation {$R *.DFM} end.