home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / BRCSTORD.DFM / BRCSTORD.txt
Text File  |  1997-02-14  |  3KB  |  159 lines

  1. object BrCustOrdForm: TBrCustOrdForm
  2.   Left = 433
  3.   Top = 412
  4.   Width = 417
  5.   Height = 334
  6.   HelpContext = 1
  7.   ActiveControl = CustGrid
  8.   BorderIcons = [biSystemMenu, biMinimize]
  9.   Caption = 'Orders By Customer'
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   Position = poScreenCenter
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Panel1: TPanel
  20.     Left = 0
  21.     Top = 0
  22.     Width = 409
  23.     Height = 36
  24.     Align = alTop
  25.     BevelOuter = bvNone
  26.     BorderWidth = 3
  27.     TabOrder = 1
  28.     object DefineBtn: TSpeedButton
  29.       Left = 167
  30.       Top = 5
  31.       Width = 85
  32.       Height = 25
  33.       AllowAllUp = True
  34.       Caption = '&Define Query'
  35.       OnClick = SetQuery
  36.     end
  37.     object ActivateBtn: TSpeedButton
  38.       Left = 281
  39.       Top = 4
  40.       Width = 85
  41.       Height = 25
  42.       AllowAllUp = True
  43.       GroupIndex = 1
  44.       Caption = 'Activate Query'
  45.       OnClick = ActivateQuery
  46.     end
  47.     object Bevel1: TBevel
  48.       Left = 3
  49.       Top = 31
  50.       Width = 403
  51.       Height = 2
  52.       Align = alBottom
  53.     end
  54.     object Navigator: TDBNavigator
  55.       Left = 8
  56.       Top = 4
  57.       Width = 135
  58.       Height = 25
  59.       VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast, nbRefresh]
  60.       ParentShowHint = False
  61.       ShowHint = True
  62.       TabOrder = 0
  63.     end
  64.   end
  65.   object BtnPanel: TPanel
  66.     Left = 0
  67.     Top = 271
  68.     Width = 409
  69.     Height = 36
  70.     Align = alBottom
  71.     BevelOuter = bvNone
  72.     TabOrder = 3
  73.     object EditBtn: TButton
  74.       Left = 221
  75.       Top = 6
  76.       Width = 84
  77.       Height = 25
  78.       Caption = '&Edit'
  79.       TabOrder = 0
  80.       OnClick = EditBtnClick
  81.     end
  82.     object CloseBtn: TButton
  83.       Left = 311
  84.       Top = 6
  85.       Width = 84
  86.       Height = 25
  87.       Cancel = True
  88.       Caption = '&Close'
  89.       Default = True
  90.       TabOrder = 1
  91.       OnClick = CloseBtnClick
  92.     end
  93.   end
  94.   object CustPanel: TPanel
  95.     Left = 0
  96.     Top = 36
  97.     Width = 409
  98.     Height = 118
  99.     Align = alTop
  100.     BevelOuter = bvNone
  101.     TabOrder = 0
  102.     object CustGrid: TDBGrid
  103.       Left = 6
  104.       Top = 4
  105.       Width = 392
  106.       Height = 111
  107.       Columns = <
  108.         item
  109.           FieldName = 'CustNo'
  110.         end
  111.         item
  112.           FieldName = 'Company'
  113.         end
  114.         item
  115.           FieldName = 'Phone'
  116.         end
  117.         item
  118.           FieldName = 'LastInvoiceDate'
  119.         end>
  120.       DataSource = MastData.CustMasterSrc
  121.       Options = [dgTitles, dgIndicator, dgColLines, dgRowLines, dgRowSelect]
  122.       ReadOnly = True
  123.       TabOrder = 0
  124.       TitleFont.Charset = DEFAULT_CHARSET
  125.       TitleFont.Color = clWindowText
  126.       TitleFont.Height = -11
  127.       TitleFont.Name = 'MS Sans Serif'
  128.       TitleFont.Style = []
  129.       OnDblClick = EditBtnClick
  130.       OnEnter = CustGridEnter
  131.     end
  132.   end
  133.   object OrdersPanel: TPanel
  134.     Left = 0
  135.     Top = 154
  136.     Width = 409
  137.     Height = 117
  138.     Align = alTop
  139.     BevelOuter = bvNone
  140.     TabOrder = 2
  141.     object OrdersGrid: TDBGrid
  142.       Left = 6
  143.       Top = 3
  144.       Width = 392
  145.       Height = 111
  146.       DataSource = MastData.OrdByCustSrc
  147.       Options = [dgTitles, dgIndicator, dgColLines, dgRowLines, dgRowSelect]
  148.       TabOrder = 0
  149.       TitleFont.Charset = DEFAULT_CHARSET
  150.       TitleFont.Color = clWindowText
  151.       TitleFont.Height = -11
  152.       TitleFont.Name = 'MS Sans Serif'
  153.       TitleFont.Style = []
  154.       OnDblClick = EditBtnClick
  155.       OnEnter = OrdersGridEnter
  156.     end
  157.   end
  158. end
  159.