登录 注册
当前位置:主页 > 资源下载 > 50 > 启动程序伴随音乐(VB6.0源代码编写)Private Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long下载

启动程序伴随音乐(VB6.0源代码编写)Private Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long下载

  • 更新:2024-11-27 09:10:14
  • 大小:595KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:VB - 后端
  • 格式:RAR

资源介绍

启动程序伴随音乐(VB6.0源代码编写)Private Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long Const SND_ASYNC = &H1 Private Sub Form_Load() sndPlaySound App.Path + "\PY.WAV", &H1 End Sub