home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / CUSTVIEW.DFM / CUSTVIEW.txt
Text File  |  1997-05-12  |  4KB  |  186 lines

  1. object fmCustView: TfmCustView
  2.   Left = 220
  3.   Top = 109
  4.   BorderStyle = bsSingle
  5.   Caption = 'Customers - Unfiltered'
  6.   ClientHeight = 390
  7.   ClientWidth = 538
  8.   Font.Color = clWindowText
  9.   Font.Height = -14
  10.   Font.Style = []
  11.   Menu = MainMenu1
  12.   PixelsPerInch = 120
  13.   TextHeight = 14
  14.   object Label3: TLabel
  15.     Left = 13
  16.     Top = 207
  17.     Width = 100
  18.     Height = 15
  19.     Caption = 'Orders Query'
  20.     Font.Color = clBlack
  21.     Font.Height = -15
  22.     Font.Style = [fsBold]
  23.     ParentFont = False
  24.   end
  25.   object Label2: TLabel
  26.     Left = 9
  27.     Top = 39
  28.     Width = 79
  29.     Height = 15
  30.     Caption = 'Customers'
  31.     Font.Color = clBlack
  32.     Font.Height = -15
  33.     Font.Style = [fsBold]
  34.     ParentFont = False
  35.   end
  36.   object SpeedButton1: TSpeedButton
  37.     Left = 10
  38.     Top = 138
  39.     Width = 143
  40.     Height = 27
  41.     Caption = 'Filter &Customers'
  42.     NumGlyphs = 2
  43.     OnClick = SpeedButton1Click
  44.   end
  45.   object StatusBar1: TStatusBar
  46.     Left = 0
  47.     Top = 369
  48.     Width = 538
  49.     Height = 21
  50.     Panels = <>
  51.     SimplePanel = False
  52.   end
  53.   object DBGrid2: TDBGrid
  54.     Left = 158
  55.     Top = 224
  56.     Width = 377
  57.     Height = 139
  58.     DataSource = DM1.OrdersSource
  59.     TabOrder = 1
  60.     TitleFont.Color = clWindowText
  61.     TitleFont.Height = -14
  62.     TitleFont.Style = []
  63.     OnEnter = DBGrid2Enter
  64.     Columns = <
  65.       item
  66.         FieldName = 'OrderNo'
  67.       end
  68.       item
  69.         FieldName = 'Custno'
  70.         Title.Caption = 'CustNo'
  71.         Width = 58
  72.       end
  73.       item
  74.         FieldName = 'AmountPaid'
  75.         Title.Caption = 'Amount Paid'
  76.         Width = 122
  77.       end
  78.       item
  79.         FieldName = 'ShipDate'
  80.         Title.Caption = 'Ship Date'
  81.         Width = 83
  82.       end>
  83.   end
  84.   object DBNavigator1: TDBNavigator
  85.     Left = 142
  86.     Top = 4
  87.     Width = 92
  88.     Height = 27
  89.     DataSource = DM1.CustomerSource
  90.     VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast]
  91.     TabOrder = 3
  92.   end
  93.   object rgDataSet: TRadioGroup
  94.     Left = 9
  95.     Top = 65
  96.     Width = 144
  97.     Height = 65
  98.     Caption = 'Dataset'
  99.     ItemIndex = 1
  100.     Items.Strings = (
  101.       '&Query-Based'
  102.       '&Table-Based')
  103.     TabOrder = 2
  104.     OnClick = rgDataSetClick
  105.   end
  106.   object DBGrid1: TDBGrid
  107.     Left = 158
  108.     Top = 36
  109.     Width = 377
  110.     Height = 175
  111.     DataSource = DM1.CustomerSource
  112.     TabOrder = 0
  113.     TitleFont.Color = clWindowText
  114.     TitleFont.Height = -14
  115.     TitleFont.Style = []
  116.     OnEnter = DBGrid1Enter
  117.     Columns = <
  118.       item
  119.         FieldName = 'CustNo'
  120.         Width = 43
  121.       end
  122.       item
  123.         FieldName = 'Company'
  124.         Width = 154
  125.       end
  126.       item
  127.         FieldName = 'Country'
  128.       end
  129.       item
  130.         FieldName = 'LastInvoiceDate'
  131.         Title.Caption = 'Last Invoice'
  132.       end
  133.       item
  134.         FieldName = 'Contact'
  135.       end
  136.       item
  137.         FieldName = 'City'
  138.       end
  139.       item
  140.         FieldName = 'State'
  141.       end>
  142.   end
  143.   object GroupBox1: TGroupBox
  144.     Left = 8
  145.     Top = 241
  146.     Width = 145
  147.     Height = 87
  148.     Caption = 'Orders Filter'
  149.     TabOrder = 5
  150.     object Label1: TLabel
  151.       Left = 4
  152.       Top = 56
  153.       Width = 75
  154.       Height = 14
  155.       Caption = 'Amount &Paid'
  156.       FocusControl = Edit1
  157.     end
  158.     object cbFilterOrders: TCheckBox
  159.       Left = 9
  160.       Top = 22
  161.       Width = 117
  162.       Height = 18
  163.       Caption = '&Filter'
  164.       TabOrder = 0
  165.       OnClick = cbFilterOrdersClick
  166.     end
  167.     object Edit1: TEdit
  168.       Left = 88
  169.       Top = 52
  170.       Width = 49
  171.       Height = 19
  172.       TabOrder = 1
  173.       Text = '1000'
  174.       OnChange = Edit1Change
  175.     end
  176.   end
  177.   object MainMenu1: TMainMenu
  178.     Left = 104
  179.     Top = 5
  180.     object About1: TMenuItem
  181.       Caption = '&About'
  182.       OnClick = About1Click
  183.     end
  184.   end
  185. end
  186.