home *** CD-ROM | disk | FTP | other *** search
- object SalesProcessingForm: TSalesProcessingForm
- Left = 161
- Top = 31
- Width = 632
- Height = 612
- Caption = 'SalesProcessingForm'
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- PixelsPerInch = 120
- TextHeight = 16
- object Panel1: TPanel
- Left = 0
- Top = 0
- Width = 624
- Height = 581
- Align = alClient
- BevelOuter = bvLowered
- Font.Color = clBlack
- Font.Height = -17
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- ParentFont = False
- TabOrder = 0
- object PartNumberLabel: TLabel
- Left = 8
- Top = 24
- Width = 94
- Height = 20
- Caption = 'Part Number'
- Font.Color = clBlack
- Font.Height = -17
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- ParentFont = False
- end
- object CustomerNumberLabel: TLabel
- Left = 8
- Top = 104
- Width = 136
- Height = 20
- Caption = 'Customer Number'
- end
- object QuantityOrderedLabel: TLabel
- Left = 8
- Top = 144
- Width = 127
- Height = 20
- Caption = 'Quantity Ordered'
- end
- object LabelPrice: TLabel
- Left = 16
- Top = 184
- Width = 39
- Height = 20
- Caption = 'Price'
- end
- object TotalLabel: TLabel
- Left = 16
- Top = 224
- Width = 37
- Height = 20
- Caption = 'Total'
- end
- object SalesTaxRateLabel: TLabel
- Left = 16
- Top = 352
- Width = 112
- Height = 20
- Caption = 'Sales Tax Rate'
- end
- object TaxLabel: TLabel
- Left = 16
- Top = 264
- Width = 27
- Height = 20
- Caption = 'Tax'
- end
- object GrandTotalLabel: TLabel
- Left = 16
- Top = 432
- Width = 87
- Height = 20
- Caption = 'Grand Total'
- end
- object TotalTaxLabel: TLabel
- Left = 16
- Top = 392
- Width = 68
- Height = 20
- Caption = 'Total Tax'
- end
- object FreightLabel: TLabel
- Left = 16
- Top = 312
- Width = 52
- Height = 20
- Caption = 'Freight'
- end
- object OrderNumber: TLabel
- Left = 16
- Top = 64
- Width = 102
- Height = 20
- Caption = 'OrderNumber'
- end
- object Label1: TLabel
- Left = 16
- Top = 480
- Width = 117
- Height = 20
- Caption = 'Payment Status'
- end
- object Label2Billing2: TLabel
- Left = 16
- Top = 528
- Width = 120
- Height = 20
- Caption = 'Billing CustNum'
- end
- object Label2: TLabel
- Left = 16
- Top = 560
- Width = 36
- Height = 20
- Caption = 'Date'
- end
- object Label3: TLabel
- Left = 312
- Top = 32
- Width = 125
- Height = 20
- Caption = 'Credit Card Type'
- end
- object Label4: TLabel
- Left = 304
- Top = 72
- Width = 148
- Height = 20
- Caption = 'Credit Card Number'
- end
- object PartNumberDBEdit: TDBEdit
- Left = 176
- Top = 24
- Width = 121
- Height = 28
- DataField = 'PartNumber'
- DataSource = SalesDataModule.SalesDataSource
- Font.Color = clBlack
- Font.Height = -17
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- MaxLength = 50
- ParentFont = False
- TabOrder = 0
- end
- object CustomerNumbertDBEdit: TDBEdit
- Left = 176
- Top = 96
- Width = 121
- Height = 28
- DataField = 'CustNum'
- DataSource = SalesDataModule.SalesDataSource
- MaxLength = 0
- TabOrder = 1
- end
- object QuantityOrderedDBEdit: TDBEdit
- Left = 176
- Top = 136
- Width = 121
- Height = 28
- DataField = 'QuantitySold'
- DataSource = SalesDataModule.SalesDataSource
- MaxLength = 0
- TabOrder = 2
- end
- object PriceDBEdit: TDBEdit
- Left = 176
- Top = 176
- Width = 121
- Height = 28
- DataField = 'Price'
- DataSource = SalesDataModule.SalesDataSource
- MaxLength = 0
- TabOrder = 3
- end
- object TotalDBEdit: TDBEdit
- Left = 176
- Top = 216
- Width = 121
- Height = 28
- DataField = 'Total'
- DataSource = SalesDataModule.SalesDataSource
- MaxLength = 0
- TabOrder = 4
- end
- object SalesTaxDBEdit: TDBEdit
- Left = 176
- Top = 344
- Width = 121
- Height = 28
- DataField = 'TaxRate'
- DataSource = SalesTaxDataModule.SalesTaxDataSource
- MaxLength = 0
- TabOrder = 5
- end
- object TaxDBEdit: TDBEdit
- Left = 176
- Top = 256
- Width = 121
- Height = 28
- DataField = 'Tax'
- DataSource = SalesDataModule.SalesDataSource
- MaxLength = 0
- TabOrder = 6
- end
- object GrandTotalDBEdit: TDBEdit
- Left = 176
- Top = 424
- Width = 121
- Height = 28
- DataField = 'GrandTotal'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 0
- TabOrder = 7
- end
- object TotalTaxDBEdit: TDBEdit
- Left = 176
- Top = 384
- Width = 121
- Height = 28
- DataField = 'TotalTax'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 0
- TabOrder = 8
- end
- object FreightDBEdit: TDBEdit
- Left = 176
- Top = 304
- Width = 121
- Height = 28
- DataField = 'ShippingCharge'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 0
- TabOrder = 9
- end
- object OrderNumberDBEdit: TDBEdit
- Left = 176
- Top = 64
- Width = 121
- Height = 28
- DataField = 'OrderNumber'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 0
- TabOrder = 10
- end
- object PaymentStatusDBEdit: TDBEdit
- Left = 176
- Top = 472
- Width = 121
- Height = 28
- DataField = 'PaymentStatus'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 10
- TabOrder = 11
- end
- object BillingCustomerNumberDBEdit: TDBEdit
- Left = 176
- Top = 520
- Width = 121
- Height = 28
- DataField = 'CustNum'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 0
- TabOrder = 12
- end
- object DateDBEdit: TDBEdit
- Left = 176
- Top = 560
- Width = 121
- Height = 28
- DataField = 'Date'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 10
- TabOrder = 13
- end
- object CreditCardTypeDBEdit: TDBEdit
- Left = 448
- Top = 24
- Width = 121
- Height = 28
- DataField = 'Credit Card Type'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 25
- TabOrder = 14
- end
- object CreditCardNumberDBEdit: TDBEdit
- Left = 456
- Top = 64
- Width = 121
- Height = 28
- DataField = 'Credit Card Number'
- DataSource = ShippingBillingDataModule.ShippingBillingDataSource
- MaxLength = 20
- TabOrder = 15
- end
- end
- end
-