📄 frmselector.frm
字号:
VERSION 5.00
Begin VB.Form frmSelector
BorderStyle = 4 'Festes Werkzeugfenster
Caption = "Select a control"
ClientHeight = 3000
ClientLeft = 405
ClientTop = 645
ClientWidth = 2055
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3000
ScaleWidth = 2055
ShowInTaskbar = 0 'False
Begin VB.ListBox lstControls
Height = 2985
ItemData = "frmSelector.frx":0000
Left = 0
List = "frmSelector.frx":002B
TabIndex = 0
Top = 0
Width = 2055
End
End
Attribute VB_Name = "frmSelector"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public OwnerForm As frmForm
Private Sub lstControls_Click()
If lstControls.Text = "Cancel" Or lstControls.Text = "--------------------------------" Then
Unload Me
Exit Sub
End If
OwnerForm.AddAControl lstControls.Text
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -