home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / BRPARTS.DFM / BRPARTS.txt
Encoding:
Text File  |  1997-01-16  |  2.3 KB  |  118 lines

  1. object BrPartsForm: TBrPartsForm
  2.   Left = 620
  3.   Top = 469
  4.   HelpContext = 4
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Browse Parts'
  8.   ClientHeight = 235
  9.   ClientWidth = 384
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Panel1: TPanel
  19.     Left = 0
  20.     Top = 0
  21.     Width = 384
  22.     Height = 37
  23.     Align = alTop
  24.     BevelOuter = bvNone
  25.     BorderWidth = 3
  26.     TabOrder = 0
  27.     object ActivateBtn: TSpeedButton
  28.       Left = 285
  29.       Top = 4
  30.       Width = 80
  31.       Height = 25
  32.       AllowAllUp = True
  33.       GroupIndex = 1
  34.       Caption = 'Backorders'
  35.       OnClick = ActivateQuery
  36.     end
  37.     object Bevel1: TBevel
  38.       Left = 3
  39.       Top = 32
  40.       Width = 378
  41.       Height = 2
  42.       Align = alBottom
  43.       Shape = bsTopLine
  44.     end
  45.     object DBNavigator1: TDBNavigator
  46.       Left = 8
  47.       Top = 4
  48.       Width = 135
  49.       Height = 25
  50.       DataSource = MastData.PartsSource
  51.       VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast, nbRefresh]
  52.       TabOrder = 0
  53.     end
  54.     object EditBtn: TButton
  55.       Left = 175
  56.       Top = 4
  57.       Width = 75
  58.       Height = 25
  59.       Caption = '&Edit'
  60.       ModalResult = 1
  61.       TabOrder = 1
  62.       OnClick = EditBtnClick
  63.     end
  64.   end
  65.   object Panel2: TPanel
  66.     Left = 0
  67.     Top = 196
  68.     Width = 384
  69.     Height = 39
  70.     Align = alBottom
  71.     BevelOuter = bvNone
  72.     TabOrder = 1
  73.     object CloseBtn: TButton
  74.       Left = 292
  75.       Top = 9
  76.       Width = 74
  77.       Height = 25
  78.       Cancel = True
  79.       Caption = '&Close'
  80.       Default = True
  81.       ModalResult = 2
  82.       TabOrder = 0
  83.       OnClick = CloseBtnClick
  84.     end
  85.   end
  86.   object PartsGrid: TDBGrid
  87.     Left = 0
  88.     Top = 37
  89.     Width = 384
  90.     Height = 159
  91.     Align = alClient
  92.     Columns = <
  93.       item
  94.         FieldName = 'PartNo'
  95.       end
  96.       item
  97.         FieldName = 'Description'
  98.       end
  99.       item
  100.         FieldName = 'OnHand'
  101.       end
  102.       item
  103.         FieldName = 'OnOrder'
  104.       end
  105.       item
  106.         FieldName = 'BackOrd'
  107.       end>
  108.     DataSource = MastData.PartsSource
  109.     Options = [dgTitles, dgColLines, dgRowLines, dgRowSelect]
  110.     TabOrder = 2
  111.     TitleFont.Color = clWindowText
  112.     TitleFont.Height = -11
  113.     TitleFont.Name = 'MS Sans Serif'
  114.     TitleFont.Style = []
  115.     OnDblClick = EditBtnClick
  116.   end
  117. end
  118.