home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 8 / CDACTUAL8.iso / progs / delphi / install / data.z / BRPARTS.DFM / BRPARTS.txt
Encoding:
Text File  |  1996-08-12  |  2.4 KB  |  121 lines

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