📄 start.frm
字号:
VERSION 5.00
Begin VB.Form Form2
Caption = "启动"
ClientHeight = 1950
ClientLeft = 60
ClientTop = 345
ClientWidth = 2115
LinkTopic = "Form2"
MaxButton = 0 'False
ScaleHeight = 1950
ScaleWidth = 2115
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 1200
TabIndex = 4
Top = 1440
Width = 735
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 240
TabIndex = 3
Top = 1440
Width = 735
End
Begin VB.Frame Frame1
Caption = "请选择:"
Height = 975
Left = 240
TabIndex = 0
Top = 240
Width = 1455
Begin VB.OptionButton Option2
Caption = "Client"
Height = 255
Left = 120
TabIndex = 2
Top = 600
Width = 975
End
Begin VB.OptionButton Option1
Caption = "Server"
Height = 375
Left = 120
TabIndex = 1
Top = 240
Width = 1095
End
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Option1.Value = True Then
Form3.Show
Me.Hide
Else
Form1.Show
Me.Hide
End If
End Sub
Private Sub Command2_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -