📄 vbvoice.bas
字号:
Attribute VB_Name = "vbvoice"
' Declarations for the vbvoice.dll export functions
' vbvoice.dll is a custom dll that wraps the MS voicectl.dll
Const VRS_NO_RECORD = &H10
Const VRS_PLAY_MODE = &H20
Const VRS_NO_MOVE = &H40
Const VRS_HIDDEN = &H80
Declare Function vbCreateVoiceControl Lib "vbvoice.dll" (ByVal hWndParent As Long, ByVal dwFlags As Long, ByVal x As Integer, ByVal y As Integer, ByVal szFileName As String) As Boolean
Declare Function vbVoicePlay Lib "vbvoice.dll" () As Boolean
Declare Function vbVoiceRec Lib "vbvoice.dll" () As Boolean
Declare Function vbVoiceStop Lib "vbvoice.dll" () As Boolean
Declare Function vbVoiceOk Lib "vbvoice.dll" () As Boolean
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -