home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / cbsuite.lzh / SU1SRC.ZIP / DEMO07.PAS < prev    next >
Pascal/Delphi Source File  |  1997-01-18  |  2KB  |  73 lines

  1. unit Demo07;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, DBCtrls, DB, DBTables, ExtCtrls, Mask, StdCtrls, CBBand,
  8.   Cb_Types, CBReport;
  9.  
  10. type
  11.   TFBDemo07 = class(TForm)
  12.     CBReport1: TCBReport;
  13.     CBBand1: TCBBand;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     Edit1: TEdit;
  17.     Memo1: TMemo;
  18.     CheckBox1: TCheckBox;
  19.     RadioButton1: TRadioButton;
  20.     RadioButton2: TRadioButton;
  21.     CheckBox2: TCheckBox;
  22.     Panel1: TPanel;
  23.     GroupBox1: TGroupBox;
  24.     Panel2: TPanel;
  25.     RadioGroup1: TRadioGroup;
  26.     CheckBox3: TCheckBox;
  27.     CheckBox4: TCheckBox;
  28.     CheckBox5: TCheckBox;
  29.     RadioButton3: TRadioButton;
  30.     RadioButton4: TRadioButton;
  31.     RadioButton5: TRadioButton;
  32.     Memo2: TMemo;
  33.     ComboBox1: TComboBox;
  34.     Panel3: TPanel;
  35.     Label3: TLabel;
  36.     ComboBox2: TComboBox;
  37.     MaskEdit1: TMaskEdit;
  38.     Shape1: TShape;
  39.     Shape2: TShape;
  40.     Shape3: TShape;
  41.     Shape4: TShape;
  42.     Shape5: TShape;
  43.     Shape6: TShape;
  44.     Image1: TImage;
  45.     ScrollBox1: TScrollBox;
  46.     Image2: TImage;
  47.     Shape7: TShape;
  48.     Shape8: TShape;
  49.     Bevel1: TBevel;
  50.     Label4: TLabel;
  51.     Panel4: TPanel;
  52.     Label5: TLabel;
  53.     DataSource1: TDataSource;
  54.     Table1: TTable;
  55.     EditCommon_Name: TDBEdit;
  56.     DBText1: TDBText;
  57.     DBMemo1: TDBMemo;
  58.     DBImage1: TDBImage;
  59.   private
  60.     { Private declarations }
  61.   public
  62.     { Public declarations }
  63.   end;
  64.  
  65. var
  66.   FBDemo07: TFBDemo07;
  67.  
  68. implementation
  69.  
  70. {$R *.DFM}
  71.  
  72. end.
  73.