-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddEmployee_u.dfm
113 lines (113 loc) · 2.27 KB
/
AddEmployee_u.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
object frmAddEmployee: TfrmAddEmployee
Left = 0
Top = 0
Caption = 'POS 2.0 Add Employee'
ClientHeight = 299
ClientWidth = 408
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Scaled = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lbledtPassword: TLabeledEdit
Left = 216
Top = 56
Width = 121
Height = 21
EditLabel.Width = 46
EditLabel.Height = 13
EditLabel.Caption = 'Password'
PasswordChar = '*'
TabOrder = 0
end
object lbledtName: TLabeledEdit
Left = 72
Top = 96
Width = 121
Height = 21
EditLabel.Width = 27
EditLabel.Height = 13
EditLabel.Caption = 'Name'
TabOrder = 1
end
object lbledtSurname: TLabeledEdit
Left = 216
Top = 96
Width = 121
Height = 21
EditLabel.Width = 42
EditLabel.Height = 13
EditLabel.Caption = 'Surname'
TabOrder = 2
end
object lbledtPhone: TLabeledEdit
Left = 216
Top = 136
Width = 121
Height = 21
EditLabel.Width = 70
EditLabel.Height = 13
EditLabel.Caption = 'Phone Number'
NumbersOnly = True
TabOrder = 3
end
object lbledtEmail: TLabeledEdit
Left = 72
Top = 136
Width = 121
Height = 21
EditLabel.Width = 28
EditLabel.Height = 13
EditLabel.Caption = 'E-Mail'
TabOrder = 4
end
object btnSubmit: TButton
Left = 168
Top = 208
Width = 75
Height = 21
Caption = '&Submit'
TabOrder = 5
OnClick = btnSubmitClick
end
object lbledtUsername: TLabeledEdit
Left = 72
Top = 56
Width = 121
Height = 21
EditLabel.Width = 48
EditLabel.Height = 13
EditLabel.Caption = 'Username'
TabOrder = 6
end
object chkAdmin: TCheckBox
Left = 168
Top = 163
Width = 97
Height = 31
Caption = ' Admin'
TabOrder = 7
end
object qryAddEmployee: TADOQuery
Connection = DataModule1.conMain
CursorType = ctStatic
Parameters = <>
SQL.Strings = (
'SELECT * FROM Employees')
Left = 328
Top = 256
end
object tblAddEmployee: TADOTable
Connection = DataModule1.conMain
CursorType = ctStatic
TableName = 'Employees'
Left = 248
Top = 232
end
end