Subversion Repositories autosfx

Rev

Rev 1 | Details | Compare with Previous | 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
2 daniel-mar 10
  Font.Charset = ANSI_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
1 daniel-mar 15
  OldCreateOrder = True
16
  Position = poMainFormCenter
17
  OnShow = FormShow
18
  PixelsPerInch = 96
19
  TextHeight = 13
20
  object PwEnterLabel: TLabel
21
    Left = 8
22
    Top = 56
2 daniel-mar 23
    Width = 117
1 daniel-mar 24
    Height = 13
25
    Caption = 'Bitte Passwort eingeben.'
26
  end
27
  object FileLabel: TLabel
28
    Left = 8
29
    Top = 6
2 daniel-mar 30
    Width = 28
1 daniel-mar 31
    Height = 13
32
    Caption = 'Datei:'
33
  end
34
  object CurrentFileLabel: TLabel
35
    Left = 20
36
    Top = 25
37
    Width = 262
38
    Height = 13
39
    AutoSize = False
40
    Caption = 'CurrentFileLabel'
41
  end
42
  object TryLabel: TLabel
43
    Left = 241
44
    Top = 8
45
    Width = 41
46
    Height = 13
47
    Alignment = taRightJustify
48
    Caption = 'TryLabel'
49
  end
50
  object Password: TEdit
51
    Left = 8
52
    Top = 75
53
    Width = 274
54
    Height = 21
55
    PasswordChar = '*'
56
    TabOrder = 0
57
  end
58
  object OKBtn: TButton
59
    Left = 126
60
    Top = 102
61
    Width = 75
62
    Height = 25
63
    Caption = 'OK'
64
    Default = True
65
    ModalResult = 1
66
    TabOrder = 1
67
    OnClick = OKBtnClick
68
  end
69
  object CancelBtn: TButton
70
    Left = 206
71
    Top = 102
72
    Width = 75
73
    Height = 25
74
    Cancel = True
75
    Caption = 'Abbrechen'
76
    ModalResult = 2
77
    TabOrder = 2
78
  end
79
end