frmselector.frm
来自「用VB实现的编译器的源代码」· FRM 代码 · 共 49 行
FRM
49 行
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 + =
减小字号Ctrl + -
显示快捷键?