Subversion Repositories autosfx

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
object PasswordDlg: TPasswordDlg
2
  Left = 245
3
  Top = 108
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsDialog
6
  Caption = 'Daten-Entschl'#252'sselung'
7
  ClientHeight = 140
8
  ClientWidth = 290
9
  Color = clBtnFace
10
  ParentFont = True
11
  OldCreateOrder = True
12
  Position = poMainFormCenter
13
  OnShow = FormShow
14
  PixelsPerInch = 96
15
  TextHeight = 13
16
  object PwEnterLabel: TLabel
17
    Left = 8
18
    Top = 56
19
    Width = 120
20
    Height = 13
21
    Caption = 'Bitte Passwort eingeben.'
22
  end
23
  object FileLabel: TLabel
24
    Left = 8
25
    Top = 6
26
    Width = 29
27
    Height = 13
28
    Caption = 'Datei:'
29
  end
30
  object CurrentFileLabel: TLabel
31
    Left = 20
32
    Top = 25
33
    Width = 262
34
    Height = 13
35
    AutoSize = False
36
    Caption = 'CurrentFileLabel'
37
  end
38
  object TryLabel: TLabel
39
    Left = 241
40
    Top = 8
41
    Width = 41
42
    Height = 13
43
    Alignment = taRightJustify
44
    Caption = 'TryLabel'
45
  end
46
  object Password: TEdit
47
    Left = 8
48
    Top = 75
49
    Width = 274
50
    Height = 21
51
    PasswordChar = '*'
52
    TabOrder = 0
53
  end
54
  object OKBtn: TButton
55
    Left = 126
56
    Top = 102
57
    Width = 75
58
    Height = 25
59
    Caption = 'OK'
60
    Default = True
61
    ModalResult = 1
62
    TabOrder = 1
63
    OnClick = OKBtnClick
64
  end
65
  object CancelBtn: TButton
66
    Left = 206
67
    Top = 102
68
    Width = 75
69
    Height = 25
70
    Cancel = True
71
    Caption = 'Abbrechen'
72
    ModalResult = 2
73
    TabOrder = 2
74
  end
75
end