-
Notifications
You must be signed in to change notification settings - Fork 0
/
SelectUser.dfm
74 lines (74 loc) · 1.46 KB
/
SelectUser.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
object FRM_SelectUser: TFRM_SelectUser
Left = 726
Top = 742
BorderStyle = bsDialog
Caption = 'Select user'
ClientHeight = 145
ClientWidth = 211
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 16
Width = 65
Height = 13
Caption = 'Select a user:'
end
object Label2: TLabel
Left = 16
Top = 32
Width = 181
Height = 29
AutoSize = False
Caption =
'(to create a new user, simply type the name in the box and press' +
' OK)'
WordWrap = True
end
object ComboBox1: TComboBox
Left = 16
Top = 64
Width = 181
Height = 21
ItemHeight = 13
TabOrder = 0
OnChange = ComboBox1Change
end
object CheckBox1: TCheckBox
Left = 16
Top = 88
Width = 181
Height = 17
Caption = 'don'#39't ask again'
TabOrder = 1
end
object Button1: TButton
Left = 124
Top = 108
Width = 75
Height = 25
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 2
end
object Button2: TButton
Left = 16
Top = 108
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
end