home *** CD-ROM | disk | FTP | other *** search
- {-------------------------------------------------------------------------------
- Name : SolutionsUnlimitedPathOptions.pas
- Author : Robert Kozak
- Date : November 1, 1997
-
- Copyright : ⌐ 1997 Solutions Unlimited. All Rights Reserved.
-
- Version : 1.0
- Last Updated :
-
- Description : Path Options dialog form.
-
- Notes:
- -------------------------------------------------------------------------------}
- unit SolutionsUnlimitedPathOptions;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ComCtrls, ExtCtrls, Placemnt;
-
- type
- TfrmPathOptions = class(TForm)
- Panel1: TPanel;
- PageControl1: TPageControl;
- TabSheet1: TTabSheet;
- Panel2: TPanel;
- Button1: TButton;
- Button2: TButton;
- GroupBox1: TGroupBox;
- cbxSync: TCheckBox;
- cbxDisplayPackages: TCheckBox;
- FormStorage: TFormStorage;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- frmPathOptions: TfrmPathOptions;
-
- implementation
-
- {$R *.DFM}
-
- end.
-