| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1747 人关注过本帖
标题:如何在VC6.0中插入背景音乐?
只看楼主 加入收藏
viptel
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2010-6-8
结帖率:100%
收藏
已结贴  问题点数:1 回复次数:2 
如何在VC6.0中插入背景音乐?
怎么在vc6.0编译器上自己编写的一个小软件上插入背景音乐啊?
如果可以请给出列子~
或者加我的QQ 245364817  详谈!
搜索更多相关主题的帖子: 音乐 
2010-06-08 21:53
kingmacrobo
Rank: 2
来 自:HUST
等 级:论坛游民
帖 子:39
专家分:49
注 册:2010-6-1
收藏
得分:0 
在case WM_COMMAND:中的switch (LOWORD(wParam)){}中加上以下代码即可:
        case ID_MUSICON:
            PlaySound((LPCTSTR)IDR_MUSIC,(HINSTANCE)hwnd,SND_RESOURCE|SND_ASYNC);
            break;
        case ID_MUSICOFF:
            PlaySound(NULL,(HINSTANCE)hwnd,NULL);
            break;

其中   ID_MUSICON 为开启音乐的按键,ID_MUSICOFF为关闭音乐的按键,IDR_MUSIC为音乐的资源名((LPCTSTR)IDR_MUSIC也可为具体的路径,如"c:\win95\media\The Microsoft Sound.wav"),hwnd为当前窗口句柄。

MSND上PlaySound的解释:

Requirements
OS Versions: Windows CE 2.0 and later.
Header: Mmsystem.h.
Link Library: Coredll.lib.

This function plays a sound specified by a file name, resource, or system event.

BOOL WINAPI PlaySound(
  LPCSTR pszSound,
  HMODULE hmod,
  DWORD fdwSound
);

Parameters

pszSound
    Pointer to a null-terminated string that specifies the sound to play. If this parameter is NULL, any currently playing waveform sound is stopped. To stop a non-waveform sound, specify SND_PURGE in the fdwSound parameter.

    Three flags in fdwSound (SND_ALIAS, SND_FILENAME, and SND_RESOURCE) determine whether the name is interpreted as an alias for a system event, a file name, or a resource identifier. If none of these flags are specified, PlaySound searches the registry or the WIN.INI file for an association with the specified sound name. If an association is found, the sound event is played. If no association is found in the registry, the name is interpreted as a file name.
hmod
    Handle to the executable file that contains the resource to be loaded. This parameter must be NULL unless SND_RESOURCE is specified in fdwSound.
fdwSound
    Flags for playing the sound. The following table shows the possible values.
    Value  Description
    SND_ALIAS  The pszSound parameter is a system-event alias in the registry or the WIN.INI file. Do not use with either SND_FILENAME or SND_RESOURCE.
    SND_ASYNC  The sound is played asynchronously and PlaySound returns immediately after beginning the sound. To terminate an asynchronously played waveform sound, call PlaySound with pszSound set to NULL.
    SND_FILENAME  The pszSound parameter is a file name.
    SND_LOOP  The sound plays repeatedly until PlaySound is called again with the pszSound parameter set to NULL. You must also specify the SND_ASYNC flag to indicate an asynchronous sound event.
    SND_MEMORY  A sound event's file is loaded in RAM. The parameter specified by pszSound must point to an image of a sound in memory.
    SND_NODEFAULT  No default sound event is used. If the sound cannot be found, PlaySound returns silently without playing the default sound.
    SND_NOSTOP  The specified sound event will yield to another sound event that is already playing. If a sound cannot be played because the resource needed to generate that sound is busy playing another sound, the function immediately returns FALSE without playing the requested sound.

    If this flag is not specified, PlaySound attempts to stop the currently playing sound so that the device can be used to play the new sound.
    SND_NOWAIT  If the driver is busy, return immediately without playing the sound.
    SND_RESOURCE  The pszSound parameter is a resource identifier; hmod must identify the instance that contains the resource. When creating the resource, you must identify it as being of the WAVE type, see Using PlaySound with a Resource Identifier.
    SND_SYNC  Synchronous playback of a sound event. PlaySound returns after the sound event completes.

Return Values

TRUE indicates success. FALSE indicates failure.
Remarks

Windows CE does not support the SND_ALIAS_ID and SND_PURGE flags for the fdwSound parameter. The sound specified by pszSound must fit into available physical memory and be playable by an installed waveform-audio device driver. PlaySound searches the file system directories for the sound according to the search order that was specified by the OEM of the target device. If it cannot find the specified sound, PlaySound uses the default system event sound entry instead. If the function can find neither the system default entry nor the default sound, it makes no sound and returns FALSE.

For examples of how to use the PlaySound function, see Using the PlaySound Function.
Requirements

OS Versions: Windows CE 2.0 and later.
Header: Mmsystem.h.
Link Library: Coredll.lib.
See Also

Waveform Audio Functions | sndPlaySound

Last updated on Wednesday, July 13, 2005

© 2005 Microsoft Corporation. All rights reserved.

另,百度百科的中文解释:
http://baike.baidu.com/view/1014003.htm?fr=ala0_1_1

2010-06-08 22:27
viptel
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2010-6-8
收藏
得分:0 
回复 2楼 kingmacrobo
不是很懂,能不能写一个简单的代码来看看 谢谢啦
2010-06-10 20:41
快速回复:如何在VC6.0中插入背景音乐?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.012917 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved