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

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