home *** CD-ROM | disk | FTP | other *** search
/ Guide To Cracking 2002 / Guide_to_Cracking_2002.iso / Programming / yPP-B-SRC.ZIP / Unit8.dfm < prev    next >
Text File  |  2000-08-31  |  3KB  |  143 lines

  1. object srform: Tsrform
  2.   Left = 301
  3.   Top = 197
  4.   BorderStyle = bsToolWindow
  5.   Caption = 'Add Search & Replace'
  6.   ClientHeight = 169
  7.   ClientWidth = 346
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poMainFormCenter
  16.   OnClose = FormClose
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object SpeedButton1: TSpeedButton
  21.     Left = 266
  22.     Top = 8
  23.     Width = 73
  24.     Height = 22
  25.     Caption = 'OK'
  26.     Flat = True
  27.     Font.Charset = DEFAULT_CHARSET
  28.     Font.Color = clWindowText
  29.     Font.Height = -11
  30.     Font.Name = 'MS Sans Serif'
  31.     Font.Style = [fsBold]
  32.     ParentFont = False
  33.     OnClick = SpeedButton1Click
  34.   end
  35.   object SpeedButton2: TSpeedButton
  36.     Left = 266
  37.     Top = 32
  38.     Width = 73
  39.     Height = 22
  40.     Caption = 'Cancel'
  41.     Flat = True
  42.     Font.Charset = DEFAULT_CHARSET
  43.     Font.Color = clWindowText
  44.     Font.Height = -11
  45.     Font.Name = 'MS Sans Serif'
  46.     Font.Style = [fsBold]
  47.     ParentFont = False
  48.     OnClick = SpeedButton2Click
  49.   end
  50.   object Panel1: TPanel
  51.     Left = 8
  52.     Top = 8
  53.     Width = 249
  54.     Height = 105
  55.     BevelInner = bvRaised
  56.     BevelOuter = bvLowered
  57.     TabOrder = 0
  58.     object Panel2: TPanel
  59.       Left = 8
  60.       Top = 16
  61.       Width = 89
  62.       Height = 25
  63.       Alignment = taLeftJustify
  64.       BevelOuter = bvNone
  65.       Caption = 'Search Bytes:'
  66.       TabOrder = 0
  67.     end
  68.     object Panel3: TPanel
  69.       Left = 8
  70.       Top = 48
  71.       Width = 81
  72.       Height = 25
  73.       Alignment = taLeftJustify
  74.       BevelOuter = bvNone
  75.       Caption = 'Replace Bytes:'
  76.       TabOrder = 1
  77.     end
  78.     object Edit1: TEdit
  79.       Left = 104
  80.       Top = 16
  81.       Width = 121
  82.       Height = 21
  83.       CharCase = ecUpperCase
  84.       MaxLength = 510
  85.       TabOrder = 2
  86.     end
  87.     object Edit2: TEdit
  88.       Left = 104
  89.       Top = 48
  90.       Width = 121
  91.       Height = 21
  92.       CharCase = ecUpperCase
  93.       MaxLength = 510
  94.       TabOrder = 3
  95.     end
  96.     object CheckBox1: TCheckBox
  97.       Left = 8
  98.       Top = 80
  99.       Width = 137
  100.       Height = 17
  101.       Caption = 'Replace all matches'
  102.       TabOrder = 4
  103.     end
  104.   end
  105.   object GroupBox1: TGroupBox
  106.     Left = 8
  107.     Top = 119
  108.     Width = 249
  109.     Height = 42
  110.     Caption = 'Position:'
  111.     TabOrder = 1
  112.     object RadioButton1: TRadioButton
  113.       Left = 24
  114.       Top = 16
  115.       Width = 57
  116.       Height = 17
  117.       Caption = 'above'
  118.       Enabled = False
  119.       TabOrder = 0
  120.     end
  121.     object RadioButton2: TRadioButton
  122.       Left = 96
  123.       Top = 16
  124.       Width = 57
  125.       Height = 17
  126.       Caption = 'under'
  127.       Enabled = False
  128.       TabOrder = 1
  129.     end
  130.     object RadioButton3: TRadioButton
  131.       Left = 176
  132.       Top = 16
  133.       Width = 49
  134.       Height = 17
  135.       Caption = 'end'
  136.       Checked = True
  137.       Enabled = False
  138.       TabOrder = 2
  139.       TabStop = True
  140.     end
  141.   end
  142. end
  143.