📄 form1.frm
字号:
VERSION 5.00
Object = "{CFA7AFF4-3242-4269-9172-7389D695AE01}#1.0#0"; "StoneXP.ocx"
Begin VB.Form Form1
BackColor = &H8000000B&
BorderStyle = 3 'Fixed Dialog
Caption = "用户登陆"
ClientHeight = 2280
ClientLeft = 45
ClientTop = 375
ClientWidth = 4005
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2280
ScaleWidth = 4005
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin StoneXP.XPButton XPButton2
Height = 375
Left = 2160
TabIndex = 5
Top = 1560
Width = 975
_ExtentX = 1720
_ExtentY = 661
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "取 消"
MouseIcon = "Form1.frx":0000
MousePointer = 99
End
Begin StoneXP.XPButton XPButton1
Height = 375
Left = 600
TabIndex = 4
Top = 1560
Width = 975
_ExtentX = 1720
_ExtentY = 661
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "确 定"
MouseIcon = "Form1.frx":031A
MousePointer = 99
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
IMEMode = 3 'DISABLE
Left = 1680
PasswordChar = "*"
TabIndex = 1
Top = 960
Width = 1335
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1680
TabIndex = 0
Top = 360
Width = 1335
End
Begin VB.Label Label2
BackColor = &H8000000B&
Caption = "密 码:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000007&
Height = 375
Left = 720
TabIndex = 3
Top = 960
Width = 1215
End
Begin VB.Label Label1
BackColor = &H8000000B&
Caption = "用户名:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000007&
Height = 375
Left = 720
TabIndex = 2
Top = 360
Width = 1095
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub XPButton1_Click()
On Error GoTo finish
user = Text1.Text
Set mdbrs = mdbconn.Execute("select * from 登陆 where 用户名='" & Text1.Text & "' and 密码='" & Text2.Text & "'")
If mdbrs.EOF = True Then
Text1.Text = ""
Text2.Text = ""
Text1.SetFocus
MsgBox "用户名和密码不正确!!"
Else
user111 = mdbrs.Fields(0)
sup = mdbrs.Fields(2)
If mdbrs.Fields(2) = "经理" Then
chair = True
End If
If mdbrs.Fields(2) = "管理员" Then
workman = True
End If
If mdbrs.Fields(2) = "客户" Then
cust = True
End If
Unload Me
MDIForm1.Show
End If
Exit Sub
finish:
MsgBox Err.Description
End Sub
Private Sub XPButton2_Click()
End
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Call XPButton1_Click
End If
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Call XPButton1_Click
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -