home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Demos / Db / IbMastApp / SRCHDLG.DFM / SRCHDLG.txt
Encoding:
Text File  |  1999-08-11  |  3.5 KB  |  148 lines

  1. object SearchDlg: TSearchDlg
  2.   Left = 226
  3.   Top = 118
  4.   ActiveControl = DBGrid1
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'SearchDlg'
  8.   ClientHeight = 299
  9.   ClientWidth = 282
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 9
  19.     Top = 11
  20.     Width = 69
  21.     Height = 13
  22.     Alignment = taRightJustify
  23.     AutoSize = False
  24.     Caption = 'Search Field:'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 7
  28.     Top = 40
  29.     Width = 71
  30.     Height = 13
  31.     Alignment = taRightJustify
  32.     AutoSize = False
  33.     Caption = 'Search Text:'
  34.   end
  35.   object SearchButton: TSpeedButton
  36.     Left = 248
  37.     Top = 36
  38.     Width = 23
  39.     Height = 23
  40.     Hint = 'Search'
  41.     Enabled = False
  42.     Glyph.Data = {
  43.       CA010000424DCA01000000000000760000002800000022000000110000000100
  44.       04000000000054010000CE0E0000D80E00000000000000000000000000000000
  45.       80000080000000808000800000008000800080800000C0C0C000808080000000
  46.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF003333333FBFFF
  47.       FFFFF3333333333333333300000033333333FBBFFFFBF3333333333333333300
  48.       00003333333FBFFFFBFFF333333333333333330000003333333FBFFFFBFBF333
  49.       3333333333333300000033333333FBBFFFFFF333333333333333330000003333
  50.       333444FBFFFBF3333333888333333300000033333344834FBFFFF33333388738
  51.       333333000000333334847F84BFFFF33333878737833333000000333334484F84
  52.       FBBFB333338878378333330000003333348F74483FF3F3333387338873333300
  53.       0000333344FFF743333333333883333833333300000033448F84443333333338
  54.       873388873333330000003448F74333333333338873387773333333000000348F
  55.       77333333333333873337333333333300000034F7743333333333338333873333
  56.       3333330000003444433333333333338888733333333333000000333333333333
  57.       3333333333333333333333000000}
  58.     NumGlyphs = 2
  59.     ParentShowHint = False
  60.     ShowHint = True
  61.     OnClick = SearchButtonClick
  62.   end
  63.   object DBGrid1: TDBGrid
  64.     Left = 8
  65.     Top = 66
  66.     Width = 264
  67.     Height = 181
  68.     Columns = <
  69.       item
  70.         FieldName = 'PartNo'
  71.       end
  72.       item
  73.         FieldName = 'Description'
  74.         Width = 181
  75.       end
  76.       item
  77.         FieldName = 'VendorNo'
  78.       end
  79.       item
  80.         FieldName = 'OnHand'
  81.       end
  82.       item
  83.         FieldName = 'OnOrder'
  84.       end
  85.       item
  86.         FieldName = 'BackOrd'
  87.       end
  88.       item
  89.         FieldName = 'Cost'
  90.       end
  91.       item
  92.         FieldName = 'ListPrice'
  93.       end>
  94.     DataSource = DataSource
  95.     Options = [dgTitles, dgIndicator, dgColLines, dgRowLines, dgRowSelect]
  96.     TabOrder = 2
  97.     TitleFont.Color = clBlack
  98.     TitleFont.Height = -11
  99.     TitleFont.Name = 'MS Sans Serif'
  100.     TitleFont.Style = []
  101.     OnDblClick = DBGrid1DblClick
  102.   end
  103.   object OKBtn: TButton
  104.     Left = 115
  105.     Top = 265
  106.     Width = 75
  107.     Height = 25
  108.     Caption = '&OK'
  109.     Default = True
  110.     ModalResult = 1
  111.     TabOrder = 3
  112.   end
  113.   object CancelBtn: TButton
  114.     Left = 199
  115.     Top = 265
  116.     Width = 75
  117.     Height = 25
  118.     Cancel = True
  119.     Caption = '&Cancel'
  120.     ModalResult = 2
  121.     TabOrder = 4
  122.   end
  123.   object SearchEd: TEdit
  124.     Left = 80
  125.     Top = 36
  126.     Width = 161
  127.     Height = 21
  128.     TabOrder = 1
  129.     OnChange = SearchEdChange
  130.     OnKeyPress = SearchEdKeyPress
  131.   end
  132.   object OrderCombo: TComboBox
  133.     Left = 80
  134.     Top = 8
  135.     Width = 192
  136.     Height = 21
  137.     Style = csDropDownList
  138.     ItemHeight = 13
  139.     TabOrder = 0
  140.     OnChange = OrderComboChange
  141.   end
  142.   object DataSource: TDataSource
  143.     DataSet = MastData.Parts
  144.     Left = 47
  145.     Top = 253
  146.   end
  147. end
  148.