📄 modstartup.bas
字号:
Attribute VB_Name = "ModStartUp"
Option Explicit
Public Type tagInitCommonControlsEx
lngSize As Long
lngICC As Long
End Type
Public Declare Function InitCommonControlsEx Lib "comctl32.dll" (iccex As tagInitCommonControlsEx) As Boolean
Public Const ICC_USEREX_CLASSES = &H200
Public Sub Main()
On Error Resume Next
Dim ticcRet As tagInitCommonControlsEx
With ticcRet
.lngSize = LenB(ticcRet)
.lngICC = ICC_USEREX_CLASSES
End With
InitCommonControlsEx ticcRet
On Error GoTo 0
frmMain.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -