📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text2
Height = 375
Left = 600
TabIndex = 1
Top = 960
Width = 3255
End
Begin VB.TextBox Text1
Height = 375
Left = 600
TabIndex = 0
Top = 240
Width = 3255
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'窗体启动时的执行代码
Private Sub Form_Load()
Dim X As Integer
Dim Y As Integer
Dim TEMP As Integer
X = 200
Y = 100
If X < Y Then
TEMP = X
X = Y
Y = TEMP
Else
TEMP = Y
Y = X
X = TEMP
End If
Text1.Text = X
Text2.Text = Y
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -