home *** CD-ROM | disk | FTP | other *** search
- unit CascMain;
- {
- Version 1.0
- (C) 1996 Dieter Menne, Biomed Software, Tⁿbingen
- Demo program fⁿr CascCont, cascaded controls;
- Compiled units of CascCont may be freely distributed.
- For source code, contact Dieter Menne, 100016.2125@compuserve.com
-
- Demo uses DBCascDateEdit which is derived from:
-
- Shareware component TDateEdit Component V1.6
- Copyright (c) 1996 Wes Kinnett
- Email: 103332.1313@compuserve.com
-
- **COMPUSERVE REGISTRATION ID**
- 16&32 Bit W/O Source: SWREG ID 12683
- 16&32 Bit With Source: SWREG ID 12684
-
- This component runs in the IDE only; if you remove the
- component DateEdit1 from the from, this Demo program should
- run stand-alone.
- }
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
- Dialogs, DBTables, DB, Pxtable, StdCtrls, DBCtrls, ExtCtrls,
- CascCont, Buttons, Dblup2, Mask, ComCtrls, DbRXEdit,
- Menus, dbdateed ;
-
- type
- TForm1 = class(TForm)
- TeleTable: TPXTable;
- TeleSource: TDataSource;
- DBNavigator1: TDBNavigator;
- CheckTop: TDBCascCheckBox;
- TeleTableHRBrenn: TSmallintField;
- ChoiceTable: TTable;
- ChoiceSource: TDataSource;
- ChoiceTableID: TSmallintField;
- ChoiceTableHBrenn: TStringField;
- TeleTableDATE: TDateField;
- TeleTableDescript: TStringField;
- Panel1: TPanel;
- ChoiceTableBeschwerden: TStringField;
- TeleTableTopItem: TBooleanField;
- TeleTableSubItem: TBooleanField;
- TeleTableSubSubItem: TBooleanField;
- Edit1: TDBCascEdit;
- Combo1: TDBCascLookupCombo;
- CheckSub: TDBCascCheckBox;
- CheckSubSub: TDBCascCheckBox;
- CheckGroup: TDBCascCheckGroup;
- TeleTableBeArtMemo: TMemoField;
- DBCascMemo1: TDBCascMemo;
- Label1: TLabel;
- Label2: TLabel;
- Edit2: TDBCascEdit;
- TeleTableMgAspirin: TSmallintField;
- Memo1: TDBCascMemo;
- DateEdit1: TDBCascDateEdit;
- Label3: TLabel;
- Label4: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- { No code in here, all is handled by the controls }
-
- end.
-
-