nz.bas
来自「visualbasic学习材料及开发源代码」· BAS 代码 · 共 10 行
BAS
10 行
Attribute VB_Name = "Module1"
Option Explicit
Declare Function sndplaysound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszsoundname As String, ByVal uflags As Long) As Long
Global Const snd_sync = &H0
Global Const snd_async = &H1
Global Const snd_nodefault = &H2
Global Const snd_loop = &H8
Global Const snd_nostop = &H10
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?