form0403.frm
来自「VB实验教程源码」· FRM 代码 · 共 61 行
FRM
61 行
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()
'获得焦点
MsgBox "获得焦点"
End Sub
Private Sub Text1_LostFocus()
'失去焦点
MsgBox "失去焦点"
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?