FrmLog.frm
4.76 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
VERSION 5.00
Begin VB.Form FrmLog
BackColor = &H80000005&
Caption = "GeoSan - Acesso"
ClientHeight = 2685
ClientLeft = 60
ClientTop = 345
ClientWidth = 3510
ControlBox = 0 'False
Icon = "FrmLog.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2685
ScaleWidth = 3510
StartUpPosition = 2 'CenterScreen
Begin VB.TextBox txtUsrLog
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 1215
TabIndex = 0
Top = 1185
Width = 2085
End
Begin VB.CommandButton cmdOK
Caption = "OK"
Default = -1 'True
Height = 375
Left = 1215
TabIndex = 2
Top = 2175
Width = 975
End
Begin VB.TextBox txtUsrPwd
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
IMEMode = 3 'DISABLE
Left = 1230
PasswordChar = "*"
TabIndex = 1
Top = 1695
Width = 2085
End
Begin VB.CommandButton cmdCancel
Caption = "Cancel"
Height = 375
Left = 2310
TabIndex = 3
Top = 2175
Width = 975
End
Begin VB.Image Image1
Height = 840
Left = 705
Picture = "FrmLog.frx":0320
Top = 120
Width = 2040
End
Begin VB.Label Label2
BackColor = &H00FFFFFF&
Caption = "Usuário"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 315
Left = 180
TabIndex = 5
Top = 1215
Width = 900
End
Begin VB.Label Label4
BackColor = &H00FFFFFF&
Caption = "Senha"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 315
Left = 180
TabIndex = 4
Top = 1725
Width = 810
End
End
Attribute VB_Name = "FrmLog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Logou As Boolean
Private UName As Long
Private MyConn As ADODB.Connection
Private Usr As New NexusUsers.clsUsers
Public Function Init(Conn As ADODB.Connection) As Long
Set MyConn = Conn
Me.Show vbModal
Init = UName
Set Usr = Nothing
End Function
Private Sub cmdCancel_Click()
Set Usr = Nothing
Unload Me
End Sub
Private Sub cmdOK_Click()
If Not Usr.FindUser(MyConn, txtUsrLog) Then
MsgBox "Usuario não encontrado", vbExclamation
'MsgBox "gustavo, vbExclamation"
Else
If Usr.UsrBrk = True Then
MsgBox "Usuário bloqueado, contate o Administrador.", vbInformation, "Acesso Negado"
ElseIf Usr.UsrPwd <> txtUsrPwd Then
MsgBox "Senha inválida, tente novamente", vbInformation, "Acesso Negado"
txtUsrPwd.SelLength = Len(txtUsrPwd.Text)
Else
UName = Usr.UsrId
Logou = True
Unload Me
End If
End If
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
If txtUsrLog.Text = "" Then
txtUsrLog.SetFocus
ElseIf txtUsrPwd.Text = "" Then
txtUsrPwd.SetFocus
Else
cmdOK_Click
End If
End If
End Sub