-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUnosKorisnika.dfm
160 lines (160 loc) · 4 KB
/
UnosKorisnika.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
inherited FUnosKorisnika: TFUnosKorisnika
Left = 301
Top = 102
Caption = 'Unos korisnika'
PixelsPerInch = 96
TextHeight = 13
inherited Pregled: TPageControl
inherited Tpregled: TTabSheet
inherited TBar: TToolBar
inherited DBNavigator3: TDBNavigator
Hints.Strings = ()
end
end
inherited PanelGrid: TPanel
inherited DBGrid11: TdxDBGrid
Filter.Criteria = {00000000}
end
end
end
inherited Tunos: TTabSheet
inherited Panel1: TPanel
object Label4: TLabel [1]
Left = 108
Top = 68
Width = 24
Height = 13
Alignment = taRightJustify
Caption = 'Šifra:'
FocusControl = DBEdit4
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label1: TLabel [2]
Left = 68
Top = 92
Width = 64
Height = 13
Alignment = taRightJustify
Caption = 'Ime i prezime:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label2: TLabel [3]
Left = 61
Top = 117
Width = 71
Height = 13
Alignment = taRightJustify
Caption = 'Korisnièko ime:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label3: TLabel [4]
Left = 92
Top = 142
Width = 40
Height = 13
Alignment = taRightJustify
Caption = 'Lozinka:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object DBEdit4: TDBEdit
Left = 136
Top = 64
Width = 49
Height = 21
DataField = 'Sifra'
DataSource = dsTable
Enabled = False
TabOrder = 1
end
object DBEdit1: TDBEdit
Tag = 128
Left = 136
Top = 88
Width = 169
Height = 21
DataField = 'ImePrezime'
DataSource = dsTable
TabOrder = 2
end
object DBEdit2: TDBEdit
Left = 136
Top = 113
Width = 169
Height = 21
DataField = 'LoginName'
DataSource = dsTable
TabOrder = 3
end
object DBEdit3: TDBEdit
Left = 136
Top = 138
Width = 169
Height = 21
DataField = 'Lozinka'
DataSource = dsTable
PasswordChar = '*'
TabOrder = 4
end
end
end
end
inherited dsTable: TDataSource
DataSet = tKorisnici
end
object tKorisnici: TTable
Active = True
BeforeOpen = aBeforeOpen
BeforeInsert = aBeforeInsert
AfterInsert = TsAfterInsert
BeforeEdit = aBeforeEdit
AfterEdit = TsAfterEdit
AfterPost = aAfterPost
AfterCancel = aAfterCancel
BeforeDelete = aBeforeDelete
DatabaseName = 'kulture'
IndexFieldNames = 'Sifra'
TableName = 'Korisnici'
Left = 435
Top = 303
object tKorisniciSifra: TAutoIncField
DisplayLabel = 'Šifra'
FieldName = 'Sifra'
ReadOnly = True
end
object tKorisniciImePrezime: TStringField
DisplayLabel = 'Ime i prezime'
FieldName = 'ImePrezime'
Required = True
Size = 50
end
object tKorisniciLoginName: TStringField
DisplayLabel = 'Korisnièko ime'
FieldName = 'LoginName'
Required = True
end
object tKorisniciLozinka: TStringField
FieldName = 'Lozinka'
Visible = False
end
end
end