?? form3.frm
字號:
VERSION 5.00
Begin VB.Form Form3
Caption = "密碼錯誤"
ClientHeight = 1800
ClientLeft = 5250
ClientTop = 4965
ClientWidth = 5295
LinkTopic = "Form3"
ScaleHeight = 1800
ScaleWidth = 5295
Begin VB.CommandButton 退出
Caption = "取消"
BeginProperty Font
Name = "宋體"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3000
TabIndex = 2
Top = 1080
Width = 1215
End
Begin VB.CommandButton 確定
Caption = "確定"
BeginProperty Font
Name = "宋體"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 960
TabIndex = 1
Top = 1080
Width = 1215
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "密碼錯誤請重新輸入"
BeginProperty Font
Name = "宋體"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 525
Left = 240
TabIndex = 0
Top = 240
Width = 4860
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command3_Click()
Visible = False
msg1$ = "請輸入密碼:"
mima = InputBox(msg1$)
If mima = 1 Then
Form2.Visible = True
Else
Visible = False
Form3.Visible = True
End If
Unload Form3
End Sub
Private Sub 確定_Click()
Visible = False
Form1.Visible = True
End Sub
Private Sub 退出_Click()
End
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -