Subversion Repositories stackman

Rev

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

Rev Author Line No. Line
1 daniel-mar 1
object NameDlg: TNameDlg
2
  Left = 245
3
  Top = 108
4
  BorderIcons = [biSystemMenu]
5
  BorderStyle = bsDialog
6
  ClientHeight = 113
7
  ClientWidth = 233
8
  Color = clBtnFace
9
  ParentFont = True
10
  OldCreateOrder = True
11
  Position = poScreenCenter
12
  OnKeyDown = FormKeyDown
13
  OnShow = FormShow
14
  PixelsPerInch = 96
15
  TextHeight = 13
16
  object Label1: TLabel
17
    Left = 8
18
    Top = 9
19
    Width = 32
20
    Height = 13
21
    Caption = 'Name?'
22
  end
23
  object NameEdt: TEdit
24
    Left = 8
25
    Top = 27
26
    Width = 217
27
    Height = 21
28
    TabOrder = 0
29
    OnChange = NameEdtChange
30
  end
31
  object OKBtn: TButton
32
    Left = 70
33
    Top = 77
34
    Width = 75
35
    Height = 25
36
    Caption = 'OK'
37
    Default = True
38
    ModalResult = 1
39
    TabOrder = 2
40
    OnClick = OKBtnClick
41
  end
42
  object CancelBtn: TButton
43
    Left = 151
44
    Top = 78
45
    Width = 75
46
    Height = 25
47
    Cancel = True
48
    Caption = 'Abbrechen'
49
    ModalResult = 2
50
    TabOrder = 3
51
    OnClick = CancelBtnClick
52
  end
53
  object Textmode: TCheckBox
54
    Left = 8
55
    Top = 54
56
    Width = 97
57
    Height = 17
58
    Caption = 'Textmodus'
59
    TabOrder = 1
60
    OnClick = NameEdtChange
61
  end
62
end