In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.

Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.

how to process MM_MCINOTIFY messages?

Xailer professional forum in English
Responder
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

how to process MM_MCINOTIFY messages?

Mensaje por Ingo JH »

Hi all,
I'm working with 'mcisendstring' and the 'play' command to play a wavefile
asynchronously. I commit the MCI_NOTIFY flag and the handle of the form for
receiving MM_MCINOTIFY messages
Where and how can I process these messages?
TIA
Regards
Ingo
notengo
Mensajes: 417
Registrado: Vie Oct 12, 2007 1:29 pm

how to process MM_MCINOTIFY messages?

Mensaje por notengo »

Ingo,
> Where and how can I process these messages?
If the message is received throught the wndproc of the window, it should be
enough declaring the method:
METHOD MMMCINotify( nWParam, nLParam )
IF nWParam == ...
ENDIF
RETURN Nil
Regards,
José Lalí­n
notengo
Mensajes: 417
Registrado: Vie Oct 12, 2007 1:29 pm

how to process MM_MCINOTIFY messages?

Mensaje por notengo »

Ingo,
> Where and how can I process these messages?
If the message is received throught the wndproc of the window, it should be
enough declaring the method:
METHOD MMMCINotify( nWParam, nLParam )
IF nWParam == ...
ENDIF
RETURN Nil
Regards,
José Lalí­n
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

how to process MM_MCINOTIFY messages?

Mensaje por Ingo JH »

José,
thanks for the answer but I don't know if, where and how Xailer processes
notify messages :-(.
Regards
Ingo
"José Lalí­n" <notengo@correo.com> schrieb im Newsbeitrag
news:48d0c25c$[email=2@ozsrv2.ozlan.local...]2@ozsrv2.ozlan.local...[/email]
>
> Ingo,
>
>> Where and how can I process these messages?
>
> If the message is received throught the wndproc of the window, it should
> be enough declaring the method:
>
> METHOD MMMCINotify( nWParam, nLParam )
>
> IF nWParam == ...
> ENDIF
>
> RETURN Nil
>
> Regards,
> José Lalí­n
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

how to process MM_MCINOTIFY messages?

Mensaje por Ingo JH »

José,
thanks for the answer but I don't know if, where and how Xailer processes
notify messages :-(.
Regards
Ingo
"José Lalí­n" <notengo@correo.com> schrieb im Newsbeitrag
news:48d0c25c$[email=2@ozsrv2.ozlan.local...]2@ozsrv2.ozlan.local...[/email]
>
> Ingo,
>
>> Where and how can I process these messages?
>
> If the message is received throught the wndproc of the window, it should
> be enough declaring the method:
>
> METHOD MMMCINotify( nWParam, nLParam )
>
> IF nWParam == ...
> ENDIF
>
> RETURN Nil
>
> Regards,
> José Lalí­n
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9469
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

how to process MM_MCINOTIFY messages?

Mensaje por ignacio »

Ingo,
You must deploy the method HandleEvent on the form that receives the
messages:
METHOD HandleEvent( nMsg, nWParam, nLParam )
IF nMsg == ......
ENDIF
RETURN NIL
--
Ignacio Ortiz de Zúñiga
[Soporte Xailer]
[Xailer support]
"Ingo" <support@mandantwin.com> escribió en el mensaje
news:[email=48d0dd13@ozsrv2.ozlan.local...]48d0dd13@ozsrv2.ozlan.local...[/email]
> José,
>
> thanks for the answer but I don't know if, where and how Xailer processes
> notify messages :-(.
>
> Regards
>
> Ingo
>
>
> "José Lalín" <notengo@correo.com> schrieb im Newsbeitrag
> news:48d0c25c$[email=2@ozsrv2.ozlan.local...]2@ozsrv2.ozlan.local...[/email]
>>
>> Ingo,
>>
>>> Where and how can I process these messages?
>>
>> If the message is received throught the wndproc of the window, it should
>> be enough declaring the method:
>>
>> METHOD MMMCINotify( nWParam, nLParam )
>>
>> IF nWParam == ...
>> ENDIF
>>
>> RETURN Nil
>>
>> Regards,
>> José Lalín
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
NoName
Mensajes: 531
Registrado: Vie Feb 03, 2006 7:27 pm

how to process MM_MCINOTIFY messages?

Mensaje por NoName »

Ingo,
You must deploy the method HandleEvent on the form that receives the
messages:
METHOD HandleEvent( nMsg, nWParam, nLParam )
IF nMsg == ......
ENDIF
RETURN NIL
--
Ignacio Ortiz de Zúñiga
[Soporte Xailer]
[Xailer support]
"Ingo" <support@mandantwin.com> escribió en el mensaje
news:[email=48d0dd13@ozsrv2.ozlan.local...]48d0dd13@ozsrv2.ozlan.local...[/email]
> José,
>
> thanks for the answer but I don't know if, where and how Xailer processes
> notify messages :-(.
>
> Regards
>
> Ingo
>
>
> "José Lalín" <notengo@correo.com> schrieb im Newsbeitrag
> news:48d0c25c$[email=2@ozsrv2.ozlan.local...]2@ozsrv2.ozlan.local...[/email]
>>
>> Ingo,
>>
>>> Where and how can I process these messages?
>>
>> If the message is received throught the wndproc of the window, it should
>> be enough declaring the method:
>>
>> METHOD MMMCINotify( nWParam, nLParam )
>>
>> IF nWParam == ...
>> ENDIF
>>
>> RETURN Nil
>>
>> Regards,
>> José Lalín
>
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

how to process MM_MCINOTIFY messages?

Mensaje por Ingo JH »

Ignacio,
it works in this way :-).
Thanks and regards
Ingo
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> schrieb im Newsbeitrag
news:48d0e36c$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Ingo,
>
> You must deploy the method HandleEvent on the form that receives the
> messages:
>
> METHOD HandleEvent( nMsg, nWParam, nLParam )
>
> IF nMsg == ......
> ENDIF
>
> RETURN NIL
>
> --
> Ignacio Ortiz de Zúñiga
> [Soporte Xailer]
> [Xailer support]
>
>
> "Ingo" <support@mandantwin.com> escribió en el mensaje
> news:[email=48d0dd13@ozsrv2.ozlan.local...]48d0dd13@ozsrv2.ozlan.local...[/email]
>> José,
>>
>> thanks for the answer but I don't know if, where and how Xailer processes
>> notify messages :-(.
>>
>> Regards
>>
>> Ingo
>>
>>
>> "José Lalí­n" <notengo@correo.com> schrieb im Newsbeitrag
>> news:48d0c25c$[email=2@ozsrv2.ozlan.local...]2@ozsrv2.ozlan.local...[/email]
>>>
>>> Ingo,
>>>
>>>> Where and how can I process these messages?
>>>
>>> If the message is received throught the wndproc of the window, it should
>>> be enough declaring the method:
>>>
>>> METHOD MMMCINotify( nWParam, nLParam )
>>>
>>> IF nWParam == ...
>>> ENDIF
>>>
>>> RETURN Nil
>>>
>>> Regards,
>>> José Lalí­n
>>
>
>
Ingo JH
Mensajes: 358
Registrado: Lun Dic 10, 2007 5:10 pm

how to process MM_MCINOTIFY messages?

Mensaje por Ingo JH »

Ignacio,
it works in this way :-).
Thanks and regards
Ingo
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> schrieb im Newsbeitrag
news:48d0e36c$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Ingo,
>
> You must deploy the method HandleEvent on the form that receives the
> messages:
>
> METHOD HandleEvent( nMsg, nWParam, nLParam )
>
> IF nMsg == ......
> ENDIF
>
> RETURN NIL
>
> --
> Ignacio Ortiz de Zúñiga
> [Soporte Xailer]
> [Xailer support]
>
>
> "Ingo" <support@mandantwin.com> escribió en el mensaje
> news:[email=48d0dd13@ozsrv2.ozlan.local...]48d0dd13@ozsrv2.ozlan.local...[/email]
>> José,
>>
>> thanks for the answer but I don't know if, where and how Xailer processes
>> notify messages :-(.
>>
>> Regards
>>
>> Ingo
>>
>>
>> "José Lalí­n" <notengo@correo.com> schrieb im Newsbeitrag
>> news:48d0c25c$[email=2@ozsrv2.ozlan.local...]2@ozsrv2.ozlan.local...[/email]
>>>
>>> Ingo,
>>>
>>>> Where and how can I process these messages?
>>>
>>> If the message is received throught the wndproc of the window, it should
>>> be enough declaring the method:
>>>
>>> METHOD MMMCINotify( nWParam, nLParam )
>>>
>>> IF nWParam == ...
>>> ENDIF
>>>
>>> RETURN Nil
>>>
>>> Regards,
>>> José Lalí­n
>>
>
>
Responder