26 lines
369 B
Plaintext
26 lines
369 B
Plaintext
|
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.
|