Hi,
I'm trying to use Voice-Recorder control in my app and have problem to
play voice by the Voice-Recorder
As I send "VRM_PLAY" to Voice-Recorder, it dose start to play the voice
and I can received the msg "VRN_PLAY_START" from voice-reocorder
When the voice played complete, the Voice-Recorder should send me
"VRN_PLAY_STOP" but it does Not !! So the app can't aware that play voice is
finish.
But if I interrupt the playing before it complete, the behavior is
correct and the app will revceive "VRN_PLAY_STOP"
Are there specific style should be set or other way to know the play is
complete ?
---------------------------------------------------------------------------------------
The style I set for are as follow:
sCMVR.cb=sizeof(CM_VOICE_RECORDER);
sCMVR.dwStyle=VRS_NO_MOVE | VRS_PLAY_MODE | VRS_NO_RECORD |
VRS_NO_OKCANCEL | VRS_STOP_DISMISS;
sCMVR.xPos=cVRCtrl->pLocation.x;
sCMVR.yPos=cVRCtrl->pLocation.y;
sCMVR.hwndParent=cVRCtrl->hWnd_Parent;
sCMVR.lpszRecordFileName=cVRCtrl->szFile
---------------------------------------------------------------------------------------
Regards,
Y.C.