home *** CD-ROM | disk | FTP | other *** search
/ Guide To Cracking 2002 / Guide_to_Cracking_2002.iso / Programming / yPP-B-SRC.ZIP / Unit4.dfm < prev    next >
Encoding:
Text File  |  2000-08-30  |  2.3 KB  |  105 lines

  1. object optionform: Toptionform
  2.   Left = 351
  3.   Top = 203
  4.   BorderStyle = bsToolWindow
  5.   Caption = 'Loader Options'
  6.   ClientHeight = 160
  7.   ClientWidth = 280
  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 = 192
  22.     Top = 24
  23.     Width = 73
  24.     Height = 41
  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 GroupBox1: TGroupBox
  36.     Left = 8
  37.     Top = 8
  38.     Width = 161
  39.     Height = 65
  40.     Caption = 'Attack Number (hex)'
  41.     TabOrder = 0
  42.     object Edit1: TEdit
  43.       Left = 8
  44.       Top = 24
  45.       Width = 137
  46.       Height = 21
  47.       TabStop = False
  48.       CharCase = ecUpperCase
  49.       MaxLength = 8
  50.       TabOrder = 0
  51.       Text = '1'
  52.     end
  53.   end
  54.   object GroupBox2: TGroupBox
  55.     Left = 176
  56.     Top = 80
  57.     Width = 97
  58.     Height = 73
  59.     Cursor = crHandPoint
  60.     Caption = 'Icon'
  61.     TabOrder = 1
  62.     OnClick = GroupBox2Click
  63.     object Image1: TImage
  64.       Left = 32
  65.       Top = 24
  66.       Width = 33
  67.       Height = 33
  68.       OnClick = GroupBox2Click
  69.     end
  70.   end
  71.   object GroupBox3: TGroupBox
  72.     Left = 8
  73.     Top = 80
  74.     Width = 161
  75.     Height = 73
  76.     Caption = 'Generate Loader...'
  77.     TabOrder = 2
  78.     object RadioButton1: TRadioButton
  79.       Left = 8
  80.       Top = 24
  81.       Width = 129
  82.       Height = 17
  83.       Caption = 'with optimized filesize'
  84.       Checked = True
  85.       TabOrder = 0
  86.       TabStop = True
  87.     end
  88.     object RadioButton2: TRadioButton
  89.       Left = 8
  90.       Top = 48
  91.       Width = 145
  92.       Height = 17
  93.       Caption = 'without optimized filesize'
  94.       TabOrder = 1
  95.     end
  96.   end
  97.   object OpenDialog1: TOpenDialog
  98.     Filter = 'exe and ico files|*.exe;*.ico|all files|*.*'
  99.     InitialDir = '.'
  100.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  101.     Title = 'Choose a your icon... !'
  102.     Left = 248
  103.   end
  104. end
  105.