📄 main.pas
字号:
unit Main;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Grids, DBGrids, DB, DBTables;
type
TForm1 = class(TForm)
Table1: TTable;
DataSource1: TDataSource;
Table2: TTable;
DataSource2: TDataSource;
DBGrid1: TDBGrid;
DBGrid2: TDBGrid;
Table2OrderNo: TFloatField;
Table2CustNo: TFloatField;
Table2SaleDate: TDateTimeField;
Table2ShipDate: TDateTimeField;
Table2EmpNo: TIntegerField;
Table2ShipToContact: TStringField;
Table2ShipToAddr1: TStringField;
Table2ShipToAddr2: TStringField;
Table2ShipToCity: TStringField;
Table2ShipToState: TStringField;
Table2ShipToZip: TStringField;
Table2ShipToCountry: TStringField;
Table2ShipToPhone: TStringField;
Table2ShipVIA: TStringField;
Table2PO: TStringField;
Table2Terms: TStringField;
Table2PaymentMethod: TStringField;
Table2ItemsTotal: TCurrencyField;
Table2TaxRate: TFloatField;
Table2Freight: TCurrencyField;
Table2AmountPaid: TCurrencyField;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -