📄 login.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form 管理员登陆
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ClientHeight = 3000
ClientLeft = 0
ClientTop = 0
ClientWidth = 4800
ClipControls = 0 'False
ControlBox = 0 'False
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 3000
ScaleWidth = 4800
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "取消"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 320
Left = 3840
TabIndex = 3
Top = 2280
Width = 735
End
Begin VB.CommandButton Command1
Caption = "确定"
Default = -1 'True
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 320
Left = 3840
TabIndex = 2
Top = 1920
Width = 735
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 320
Left = 2400
TabIndex = 1
Top = 2280
Width = 1250
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 320
Left = 2400
TabIndex = 0
Top = 1920
Width = 1250
End
Begin MSAdodcLib.Adodc Adodc1
Height = 330
Left = 0
Top = 0
Visible = 0 'False
Width = 1200
_ExtentX = 2117
_ExtentY = 582
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=order.mdb;Persist Security Info=False"
OLEDBString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=order.mdb;Persist Security Info=False"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = ""
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "系统单机版"
BeginProperty Font
Name = "华文行楷"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 7
Top = 960
Width = 1575
End
Begin VB.Image Image1
Height = 1305
Left = 600
Picture = "login.frx":0000
Top = 840
Width = 810
End
Begin VB.Label Label3
Appearance = 0 'Flat
BackColor = &H80000005&
BackStyle = 0 'Transparent
Caption = "版本:V1.0"
BeginProperty Font
Name = "宋体"
Size = 6.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 135
Left = 3840
TabIndex = 6
Top = 2760
Width = 855
End
Begin VB.Label Label2
Caption = "密码"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 1920
TabIndex = 5
Top = 2355
Width = 375
End
Begin VB.Label Label1
Caption = "用户名"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 1800
TabIndex = 4
Top = 1965
Width = 615
End
Begin VB.Image Image2
Height = 3000
Left = 0
Picture = "login.frx":04F6
Top = 0
Width = 4800
End
End
Attribute VB_Name = "管理员登陆"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim user As String
Dim password As String
user = Text1.Text
password = Text2.Text
Dim SQL As String
SQL = "select * from 管理员 where name= '" & user & "' and password ='" & password & "'"
Dim r As New ADODB.Recordset
r.Open SQL, Conn, adOpenStatic
If r.BOF And r.EOF Then
MsgBox "对不起,用户名或密码错误!", 64, "错误提示"
Text1.Text = ""
Text2.Text = ""
Text1.SetFocus
Else
Unload Me
End If
r.Close
'If user = "" Then
'MsgBox "对不起,请输入用户名!", 64, "信息提示"
'ElseIf password = "" Then
'MsgBox "对不起,密码不能为空!", 64, "信息提示"
'Else
'Adodc1.RecordSource = "select*from 管理员"
'Adodc1.Refresh
'If user = Adodc1.Recordset.Fields("name") And password = Adodc1.Recordset.Fields("password") Then
'Unload Me
'Else
'MsgBox "对不起,用户名或密码错误!", 64, "错误提示"
'Text1.Text = ""
'Text2.Text = ""
'Text1.SetFocus
'End If
'End If
End Sub
Private Sub Command2_Click()
Unload Me
Unload 系统单机版
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
'If KeyAscii = 13 Then
' Text2.SetFocus
'End If
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
'If KeyAscii = 13 Then
'Command1.SetFocus
'End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -