home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / bonus / freesoft / files / uzsetup.exe / {app} / uzip.exe / 0 / RCDATA / TFRMDECRYPT / TFRMDECRYPT.txt
Encoding:
Text File  |  2002-05-23  |  2.3 KB  |  130 lines

  1. object frmDecrypt: TfrmDecrypt
  2.   Left = 502
  3.   Top = 367
  4.   HelpContext = 118
  5.   BorderStyle = bsDialog
  6.   Caption = 'Decrypt'
  7.   ClientHeight = 135
  8.   ClientWidth = 433
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   OnCreate = FormCreate
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 8
  22.     Top = 48
  23.     Width = 51
  24.     Height = 13
  25.     Caption = '&Output file:'
  26.     FocusControl = edtOutput
  27.   end
  28.   object lblInputFile: TLabel
  29.     Left = 8
  30.     Top = 8
  31.     Width = 43
  32.     Height = 13
  33.     Caption = '&Input file:'
  34.     FocusControl = edtInput
  35.   end
  36.   object Label3: TLabel
  37.     Left = 8
  38.     Top = 88
  39.     Width = 58
  40.     Height = 13
  41.     Caption = '&Passphrase:'
  42.     FocusControl = edtPass
  43.   end
  44.   object Button1: TButton
  45.     Left = 352
  46.     Top = 24
  47.     Width = 75
  48.     Height = 25
  49.     Caption = 'Decrypt'
  50.     Default = True
  51.     TabOrder = 4
  52.     OnClick = Button1Click
  53.   end
  54.   object edtOutput: TEdit
  55.     Left = 8
  56.     Top = 64
  57.     Width = 329
  58.     Height = 21
  59.     TabOrder = 2
  60.   end
  61.   object edtInput: TEdit
  62.     Left = 8
  63.     Top = 24
  64.     Width = 305
  65.     Height = 21
  66.     ReadOnly = True
  67.     TabOrder = 0
  68.     OnChange = edtInputChange
  69.   end
  70.   object btnBrowse: TButton
  71.     Left = 316
  72.     Top = 24
  73.     Width = 21
  74.     Height = 21
  75.     Caption = '...'
  76.     TabOrder = 1
  77.     OnClick = btnBrowseClick
  78.   end
  79.   object Button2: TButton
  80.     Left = 352
  81.     Top = 56
  82.     Width = 75
  83.     Height = 25
  84.     Caption = '&Close'
  85.     ModalResult = 2
  86.     TabOrder = 5
  87.   end
  88.   object edtPass: TEdit
  89.     Left = 8
  90.     Top = 104
  91.     Width = 329
  92.     Height = 21
  93.     PasswordChar = '*'
  94.     TabOrder = 3
  95.   end
  96.   object btnHelp: TButton
  97.     Left = 352
  98.     Top = 96
  99.     Width = 75
  100.     Height = 25
  101.     Caption = '&Help'
  102.     TabOrder = 6
  103.     OnClick = btnHelpClick
  104.   end
  105.   object FormCenter1: TFormCenter
  106.     Center = True
  107.     Left = 344
  108.     Top = 104
  109.   end
  110.   object DCP_sha11: TDCP_sha1
  111.     Algorithm = 'SHA1'
  112.     HashSize = 160
  113.     Left = 344
  114.     Top = 88
  115.   end
  116.   object DCP_rijndael: TDCP_rijndael
  117.     Algorithm = 'Rijndael'
  118.     BlockSize = 128
  119.     MaxKeySize = 256
  120.     Left = 380
  121.     Top = 88
  122.   end
  123.   object OpenDlg: TOpenDialog
  124.     Filter = 'UltimateZip encrypted files|*.uze'
  125.     Options = [ofPathMustExist, ofFileMustExist]
  126.     Left = 360
  127.     Top = 112
  128.   end
  129. end
  130.