📄 form1.ebf
字号:
VERSION 5.00
Begin VB.Form Form1
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "Form1"
ClientHeight = 4020
ClientLeft = 0
ClientTop = 0
ClientWidth = 3600
ControlBox = 0 'False
ForeColor = &H80000008&
ScaleHeight = 4020
ScaleWidth = 3600
Begin VB.CommandButton Command3
Appearance = 0 'Flat
Caption = "Hide SIP"
Height = 495
Left = 2520
TabIndex = 2
Top = 240
Width = 975
End
Begin VB.CommandButton Command2
Appearance = 0 'Flat
Caption = "Show VKB"
Height = 495
Left = 1320
TabIndex = 1
Top = 240
Width = 975
End
Begin VB.CommandButton Command1
Appearance = 0 'Flat
Caption = "Show JOT"
Height = 495
Left = 120
TabIndex = 0
Top = 240
Width = 975
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Dim II As PCDMInput
Set II = CreateObject("PCDMDLL.PCDMInput.1")
II.ShowSIP (2)
End Sub
Private Sub Command2_Click()
Dim II As PCDMInput
Set II = CreateObject("PCDMDLL.PCDMInput.1")
II.ShowSIP (1)
End Sub
Private Sub Command3_Click()
Dim II As PCDMInput
Set II = CreateObject("PCDMDLL.PCDMInput.1")
II.ShowSIP (0)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -