📄 main1form.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 7305
ClientLeft = 60
ClientTop = 345
ClientWidth = 8355
LinkTopic = "Form1"
ScaleHeight = 7305
ScaleWidth = 8355
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
WindowState = 2 'Maximized
Begin VB.Data Data1
Caption = "Data1"
Connect = "Access"
DatabaseName = "E:\vb写作\商品交易管理数据库\Spjybase.mdb"
DefaultCursorType= 0 '缺省游标
DefaultType = 2 '使用 ODBC
Exclusive = 0 'False
Height = 375
Left = 2640
Options = 0
ReadOnly = 0 'False
RecordsetType = 1 'Dynaset
RecordSource = "yhqx"
Top = 4560
Visible = 0 'False
Width = 1455
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = " Exit"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 6240
TabIndex = 2
Top = 6360
Width = 1215
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = " Enter"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 2880
TabIndex = 1
Top = 2760
Width = 1575
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = " 欢 迎 使 用 商 品 交 易 系 统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 480
TabIndex = 0
Top = 1320
Width = 7455
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label2_Click()
Dim msg
oldmark = Data1.Recordset.Bookmark
msg = Trim(InputBox("请输入用户密码:", "权限认证"))
msg = "密码 like '" & msg & "'"
Data1.Recordset.FindFirst msg
If Data1.Recordset.NoMatch Then
MsgBox ("你无权进入系统操作")
Else
Form2.Show
End If
End Sub
Private Sub Label3_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -