home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
cbsuite.lzh
/
SU1SRC.ZIP
/
DEMO07.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-01-18
|
2KB
|
73 lines
unit Demo07;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, DBCtrls, DB, DBTables, ExtCtrls, Mask, StdCtrls, CBBand,
Cb_Types, CBReport;
type
TFBDemo07 = class(TForm)
CBReport1: TCBReport;
CBBand1: TCBBand;
Label1: TLabel;
Label2: TLabel;
Edit1: TEdit;
Memo1: TMemo;
CheckBox1: TCheckBox;
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
CheckBox2: TCheckBox;
Panel1: TPanel;
GroupBox1: TGroupBox;
Panel2: TPanel;
RadioGroup1: TRadioGroup;
CheckBox3: TCheckBox;
CheckBox4: TCheckBox;
CheckBox5: TCheckBox;
RadioButton3: TRadioButton;
RadioButton4: TRadioButton;
RadioButton5: TRadioButton;
Memo2: TMemo;
ComboBox1: TComboBox;
Panel3: TPanel;
Label3: TLabel;
ComboBox2: TComboBox;
MaskEdit1: TMaskEdit;
Shape1: TShape;
Shape2: TShape;
Shape3: TShape;
Shape4: TShape;
Shape5: TShape;
Shape6: TShape;
Image1: TImage;
ScrollBox1: TScrollBox;
Image2: TImage;
Shape7: TShape;
Shape8: TShape;
Bevel1: TBevel;
Label4: TLabel;
Panel4: TPanel;
Label5: TLabel;
DataSource1: TDataSource;
Table1: TTable;
EditCommon_Name: TDBEdit;
DBText1: TDBText;
DBMemo1: TDBMemo;
DBImage1: TDBImage;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FBDemo07: TFBDemo07;
implementation
{$R *.DFM}
end.