home *** CD-ROM | disk | FTP | other *** search
- { Demos the use of TDBEdit, TDBComboBox, and TDBListBox }
- unit Main;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, DBTables, DB, StdCtrls, DBCtrls, Mask, Grids, DBGrids, ExtCtrls;
-
- type
- TForm1 = class(TForm)
- Table1: TTable;
- DataSource1: TDataSource;
- DBGrid1: TDBGrid;
- Panel1: TPanel;
- DBEdit1: TDBEdit;
- DBComboBox1: TDBComboBox;
- Table1OrderNo: TFloatField;
- Table1CustNo: TFloatField;
- Table1ItemsTotal: TCurrencyField;
- DBListBox1: TDBListBox;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Table1PaymentMethod: TStringField;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- end.
-