📄 frmselect.frm
字号:
VERSION 5.00
Begin VB.Form frmSelect
BorderStyle = 1 'Fixed Single
Caption = "Caption"
ClientHeight = 2055
ClientLeft = 45
ClientTop = 420
ClientWidth = 4950
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2055
ScaleWidth = 4950
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton cmdOption
Caption = "从图(&H)"
Height = 495
Index = 2
Left = 3480
TabIndex = 3
Top = 1440
Width = 1335
End
Begin VB.CommandButton cmdOption
Caption = "主图(&P)"
Height = 495
Index = 1
Left = 1800
TabIndex = 2
Top = 1440
Width = 1335
End
Begin VB.CommandButton cmdOption
Caption = "取消(&C)"
Height = 495
Index = 0
Left = 120
TabIndex = 1
Top = 1440
Width = 1335
End
Begin VB.Image Image1
Height = 480
Left = 120
Picture = "frmSelect.frx":0000
Top = 120
Width = 480
End
Begin VB.Label lblMain
Alignment = 2 'Center
Caption = "Label1"
Height = 1095
Left = 960
TabIndex = 0
Top = 120
Width = 3735
End
End
Attribute VB_Name = "frmSelect"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOption_Click(Index As Integer)
Select Case Index
Case 0
sChoice = ""
Case 1
sChoice = "P"
Case 2
sChoice = "C"
End Select
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -