?? modpriority.bas
字號:
Attribute VB_Name = "ModPriority"
Option Explicit
Public Declare Function GetCurrentProcess Lib "kernel32" _
() As Long
Public Declare Function SetPriorityClass Lib "kernel32" _
(ByVal hProcess As Long, ByVal dwPriorityClass As Long) As Long
Const REALTIME_PRIORITY_CLASS = &H100
Sub SetPriority()
Dim Ret As Long
Ret = SetPriorityClass(GetCurrentProcess, REALTIME_PRIORITY_CLASS)
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -