📄 selcmp.frm
字号:
VERSION 5.00
Begin VB.Form SelCompoundMap
BorderStyle = 3 'Fixed Dialog
Caption = "选择复合图"
ClientHeight = 2772
ClientLeft = 3900
ClientTop = 1596
ClientWidth = 3120
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
PaletteMode = 1 'UseZOrder
ScaleHeight = 2772
ScaleWidth = 3120
ShowInTaskbar = 0 'False
Begin VB.CommandButton cmdCancel
Cancel = -1 'True
Caption = "取消"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 2
Top = 600
Width = 855
End
Begin VB.CommandButton cmdOpen
Caption = "打开"
Default = -1 'True
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2160
TabIndex = 1
Top = 120
Width = 855
End
Begin VB.ListBox lstCMPName
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2748
Left = 0
TabIndex = 0
Top = 0
Width = 2055
End
End
Attribute VB_Name = "SelCompoundMap"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
glb_strSelCMPName = ""
Unload Me
End Sub
Private Sub cmdOpen_Click()
If lstCMPName.ListIndex < 0 Then
MsgBox "请选择要打开的复合图!"
Exit Sub
End If
glb_strSelCMPName = lstCMPName.List(lstCMPName.ListIndex)
Unload Me
End Sub
Private Sub lstCMPName_DblClick()
cmdOpen_Click
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -