📄 form4.frm
字号:
VERSION 5.00
Begin VB.Form Form4
Caption = "Layouts"
ClientHeight = 1395
ClientLeft = 60
ClientTop = 450
ClientWidth = 6975
LinkTopic = "Form4"
ScaleHeight = 1395
ScaleWidth = 6975
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command1
Caption = "OK"
Height = 375
Left = 2640
TabIndex = 1
Top = 840
Width = 1695
End
Begin VB.ComboBox Combo1
Height = 315
Left = 120
TabIndex = 0
Text = "Combo1"
Top = 240
Width = 6735
End
End
Attribute VB_Name = "Form4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Combo1_KeyPress(KeyAscii As Integer)
KeyAscii = 0
End Sub
Private Sub Command1_Click()
If Combo1.ListIndex <> -1 Then
R = CurrentLayoutCAD(CADImage, Combo1.ListIndex, True)
End If
Form1.Refresh
Hide
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -