?? mod_xp.bas
字號:
Attribute VB_Name = "mod_xP"
Option Explicit
'=========================================================='
'Thanks to: vbAccelerator www.vbacceletaror.com '
'Date : 25-06-2004 '
'Name : mod_xP.bas '
'=========================================================='
'Daniel PC (Daniel Carrasco Olguin) '
'Santiago de Chile '
'=========================================================='
Public Declare Function InitCommonControlsEx Lib "comctl32.dll" (Iccex As tagInitCommonControlsEx) As Boolean
Public Const ICC_USEREX_CLASSES = &H200
Public Type tagInitCommonControlsEx
lngSize As Long
lngICC As Long
End Type
Public Sub Main()
On Error Resume Next
Dim Iccex As tagInitCommonControlsEx
With Iccex
.lngSize = LenB(Iccex)
.lngICC = ICC_USEREX_CLASSES
End With
InitCommonControlsEx Iccex
On Error GoTo 0
frmDisk.Show
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -