📄 frm_signin.frm
字号:
VERSION 5.00
Begin VB.Form Dialog
BorderStyle = 3 'Fixed Dialog
Caption = "登陆窗口"
ClientHeight = 3195
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 6030
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 6030
ShowInTaskbar = 0 'False
Begin VB.TextBox Txt_User
Height = 270
Left = 2160
TabIndex = 5
Top = 480
Width = 2175
End
Begin VB.TextBox Txt_PWD
Height = 375
IMEMode = 3 'DISABLE
Left = 2160
PasswordChar = "*"
TabIndex = 2
Top = 960
Width = 2175
End
Begin VB.CommandButton CancelButton
Caption = "取消"
Height = 375
Left = 3120
TabIndex = 1
Top = 2040
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "确定"
Height = 375
Left = 1200
TabIndex = 0
Top = 2040
Width = 1215
End
Begin VB.Label Label2
Caption = "密 码:"
Height = 375
Left = 1200
TabIndex = 4
Top = 1080
Width = 855
End
Begin VB.Label Label1
Caption = "用户名:"
Height = 255
Left = 1200
TabIndex = 3
Top = 480
Width = 615
End
End
Attribute VB_Name = "Dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim qryCarSearchbyNum As QueryDef
Private Sub OKButton_Click()
On Error GoTo ERRHANDLE
' Set JETGRG = CreateWorkspace("", "admin", "")
'Set DBSGRG = JETGRG.OpenDatabase(App.Path & "\kcsgarage.mdb", True, False, ";PWD=" & Txt_PWD.Text)
DBEngine.SystemDB = SYSTEMDBPATH
frm_main.Show
GoTo Success
ERRHANDLE:
MsgBox Err.Description
Success:
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -