ImageVerifierCode 换一换
格式:DOC , 页数:2 ,大小:63.50KB ,
文档编号:526259      下载积分:1.5 文币
快捷下载
登录下载
邮箱/手机:
温馨提示:
系统将以此处填写的邮箱或者手机号生成账号和密码,方便再次下载。 如填写123,账号和密码都是123。
支付方式: 支付宝    微信支付   
验证码:   换一换

优惠套餐
 

温馨提示:若手机下载失败,请复制以下地址【https://www.163wenku.com/d-526259.html】到电脑浏览器->登陆(账号密码均为手机号或邮箱;不要扫码登陆)->重新下载(不再收费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  
下载须知

1: 试题类文档的标题没说有答案,则无答案;主观题也可能无答案。PPT的音视频可能无法播放。 请谨慎下单,一旦售出,概不退换。
2: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
3: 本文为用户(淡淡的紫竹语嫣)主动上传,所有收益归该用户。163文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

1,本文(Sound output by C script in WinCC.doc)为本站会员(淡淡的紫竹语嫣)主动上传,163文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。
2,用户下载本文档,所消耗的文币(积分)将全额增加到上传者的账号。
3, 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(发送邮件至3464097650@qq.com或直接QQ联系客服),我们立即给予删除!

Sound output by C script in WinCC.doc

1、Sound output by C script in WinCC This entry is available in the following languages: Entry ID: 748844 Date: 06/11/2002 QUESTION: How can I output a sound via C script in WinCC? ANSWER: Attached is a small example. This C action is behind a button, so that you just click to the button to produce a s

2、ound. C action: #include “apdefap.h“ void OnClick(char* lpszPictureName, char* lpszObjectName, char* lpszPropertyName, UINT nFlags, int x, int y) #pragma code (“Winmm.dll “) VOID WINAPI PlaySoundA ( char* pszSound, char* hmode, DWORD dwflag ); #pragma code() PlaySoundA(“C:Winnt.400Mediatada.wav“,NUL

3、L,1); Requirement for this function is a sound card. Explanation of the PlaySoundA function: 1. Parameter char* pszSound: Here you specify the complete path to where your sound file (*.wav file) is located. 2. Parameter char* hmode: Here you always specify 0. 3. Parameter DWORD dwflag. SND_SYNC = 0x

4、0000: sound file is played once and the script waits until it has been played to the end SND_ASYNC = 0x0001: sound file is played once, the script is processed in parallel SND_NODEFAULT = 0x0002: if the sound file is not found, then no default value is played, but nothing at all. SND_LOOP = 0x0008:

5、repeats the sound file until the next PlaySoundA call comes (only possible with 0x0001) = always specify 0x0009. These parameters can also be combined but bit-by-bit Ors (e.g.: SND_ASYNC | SND_LOOP) Note: If you want to use the beep of the computers internal loudspeaker instead of a sound file, then

6、 implement the following script: Since the internal loudspeaker is addressed, there is no need for a sound card. #include “apdefap.h“ void OnClick(char* lpszPictureName, char* lpszObjectName, char* lpszPropertyName, UINT nFlags, int x, int y) #pragma code (“Kernel32.dll“) BOOL Beep( DWORD dwFreq, DWORD dwDuration); /dwFreq defines the frequency of the beep in hertz /dwDuration specifies the duration of the beep in milliseconds #pragma code() Beep(1000,100); /Example: frequency 1000 hertz, 100 milliseconds Give us your feedback. Questions / suggestions re this Entry ID

侵权处理QQ:3464097650--上传资料QQ:3464097650

【声明】本站为“文档C2C交易模式”,即用户上传的文档直接卖给(下载)用户,本站只是网络空间服务平台,本站所有原创文档下载所得归上传人所有,如您发现上传作品侵犯了您的版权,请立刻联系我们并提供证据,我们将在3个工作日内予以改正。


163文库-Www.163Wenku.Com |网站地图|