source: cprs/trunk/CPRS-Chart/fHSplit.pas@ 456

Last change on this file since 456 was 456, checked in by Kevin Toppenberg, 16 years ago

Initial Upload of Official WV CPRS 1.0.26.76

File size: 374 bytes
Line 
1unit fHSplit;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
7 fPage, ExtCtrls;
8
9type
10 TfrmHSplit = class(TfrmPage)
11 pnlLeft: TPanel;
12 pnlRight: TPanel;
13 sptHorz: TSplitter;
14 private
15 public
16 { Public declarations }
17 end;
18
19var
20 frmHSplit: TfrmHSplit;
21
22implementation
23
24{$R *.DFM}
25
26end.
Note: See TracBrowser for help on using the repository browser.