home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / tema / thebat / download / update / thebat.exe / 0 / RCDATA / TPASSWORDCHANGER / TPASSWORDCHANGER.txt
Text File  |  2001-09-09  |  2KB  |  121 lines

  1. object PasswordChanger: TPasswordChanger
  2.   Left = 155
  3.   Top = 113
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Change POP3 password'
  7.   ClientHeight = 195
  8.   ClientWidth = 509
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnClose = FormClose
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 75
  19.     Top = 20
  20.     Width = 53
  21.     Height = 13
  22.     Alignment = taRightJustify
  23.     Caption = 'POP3 &User'
  24.   end
  25.   object Label2: TLabel
  26.     Left = 82
  27.     Top = 52
  28.     Width = 46
  29.     Height = 13
  30.     Alignment = taRightJustify
  31.     Caption = '&Password'
  32.   end
  33.   object Label3: TLabel
  34.     Left = 58
  35.     Top = 96
  36.     Width = 70
  37.     Height = 13
  38.     Alignment = taRightJustify
  39.     Caption = '&New password'
  40.   end
  41.   object Label4: TLabel
  42.     Left = 93
  43.     Top = 124
  44.     Width = 35
  45.     Height = 13
  46.     Alignment = taRightJustify
  47.     Caption = '&Confirm'
  48.   end
  49.   object Label5: TLabel
  50.     Left = 97
  51.     Top = 164
  52.     Width = 31
  53.     Height = 13
  54.     Alignment = taRightJustify
  55.     Caption = '&Server'
  56.   end
  57.   object eUser: TEdit
  58.     Left = 136
  59.     Top = 16
  60.     Width = 249
  61.     Height = 21
  62.     TabOrder = 0
  63.   end
  64.   object ePassword: TEdit
  65.     Left = 136
  66.     Top = 48
  67.     Width = 249
  68.     Height = 21
  69.     PasswordChar = '*'
  70.     TabOrder = 1
  71.   end
  72.   object eNewPass: TEdit
  73.     Left = 136
  74.     Top = 88
  75.     Width = 249
  76.     Height = 21
  77.     PasswordChar = '*'
  78.     TabOrder = 2
  79.     OnChange = eNewPassChange
  80.   end
  81.   object eConfirm: TEdit
  82.     Left = 136
  83.     Top = 120
  84.     Width = 249
  85.     Height = 21
  86.     PasswordChar = '*'
  87.     TabOrder = 3
  88.     OnChange = eNewPassChange
  89.   end
  90.   object eServer: TEdit
  91.     Left = 136
  92.     Top = 160
  93.     Width = 249
  94.     Height = 21
  95.     TabOrder = 4
  96.     OnChange = eNewPassChange
  97.   end
  98.   object bOK: TButton
  99.     Left = 408
  100.     Top = 16
  101.     Width = 81
  102.     Height = 25
  103.     Caption = 'OK'
  104.     Default = True
  105.     Enabled = False
  106.     TabOrder = 5
  107.     OnClick = bOKClick
  108.   end
  109.   object bCancel: TButton
  110.     Left = 408
  111.     Top = 56
  112.     Width = 81
  113.     Height = 25
  114.     Cancel = True
  115.     Caption = 'Cancel'
  116.     ModalResult = 2
  117.     TabOrder = 6
  118.     OnClick = bCancelClick
  119.   end
  120. end
  121.