VistA-cprs/CPRS-Chart/fPostings.pas

26 lines
369 B
Plaintext
Raw Normal View History

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.