?? form3.frm
字號:
VERSION 5.00
Begin VB.Form Form3
BorderStyle = 1 'Fixed Single
Caption = "Form3"
ClientHeight = 5430
ClientLeft = 45
ClientTop = 330
ClientWidth = 3630
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5430
ScaleWidth = 3630
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "隱 藏"
Height = 300
Left = 2880
TabIndex = 0
Top = 5110
Width = 735
End
Begin VB.Image Image2
Height = 495
Left = 600
Picture = "Form3.frx":0000
Top = 360
Width = 2355
End
Begin VB.Image Image1
Height = 5445
Left = 0
Picture = "Form3.frx":0881
Top = 0
Width = 3645
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Command1.Visible = False
Image2.Visible = False
End Sub
Private Sub Form_Load()
Move (Screen.Width - Width) \ 2, (Screen.Height - Height) \ 2
End Sub
Private Sub Image1_Click()
Unload Form3
End Sub
Private Sub Label1_Click()
Unload Form3
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -