form4.frm
来自「随着计算机的不断发展和普及」· FRM 代码 · 共 84 行
FRM
84 行
VERSION 5.00
Begin VB.Form Form4
Caption = "模式选择"
ClientHeight = 3420
ClientLeft = 60
ClientTop = 450
ClientWidth = 5415
LinkTopic = "Form4"
LockControls = -1 'True
Picture = "Form4.frx":0000
ScaleHeight = 3420
ScaleWidth = 5415
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 3000
TabIndex = 5
Top = 2520
Width = 1095
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 1200
TabIndex = 4
Top = 2520
Width = 1095
End
Begin VB.OptionButton Option2
BackColor = &H00E2BD8F&
Caption = "Option2"
Height = 375
Left = 1200
TabIndex = 1
Top = 1560
Width = 1215
End
Begin VB.OptionButton Option1
BackColor = &H00E2BD8F&
Caption = "Option1"
Height = 375
Left = 1200
TabIndex = 0
Top = 840
Width = 1215
End
Begin VB.Label Label2
BackColor = &H00E2BD8F&
Caption = "冬季"
Height = 375
Left = 3000
TabIndex = 3
Top = 1560
Width = 1215
End
Begin VB.Label Label1
BackColor = &H00E2BD8F&
Caption = "夏季"
Height = 375
Left = 3000
TabIndex = 2
Top = 840
Width = 1215
End
End
Attribute VB_Name = "Form4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Option1.Value = True
Option2.Value = False
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?