?? form0403.frm
字號(hào):
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 2310
ClientLeft = 60
ClientTop = 450
ClientWidth = 3585
LinkTopic = "Form1"
ScaleHeight = 2310
ScaleWidth = 3585
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "Command2"
Height = 375
Left = 2040
TabIndex = 3
Top = 1440
Width = 975
End
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 375
Left = 720
TabIndex = 2
Top = 1440
Width = 975
End
Begin VB.TextBox Text1
Height = 375
Left = 1920
TabIndex = 1
Text = "Text1"
Top = 600
Width = 1095
End
Begin VB.Label Label1
Caption = "Label1"
Height = 375
Left = 840
TabIndex = 0
Top = 600
Width = 855
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Text1_GotFocus()
'獲得焦點(diǎn)
MsgBox "獲得焦點(diǎn)"
End Sub
Private Sub Text1_LostFocus()
'失去焦點(diǎn)
MsgBox "失去焦點(diǎn)"
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -