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.
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?
how to process MM_MCINOTIFY messages?
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
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
how to process MM_MCINOTIFY messages?
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
> 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
how to process MM_MCINOTIFY messages?
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
> 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
how to process MM_MCINOTIFY messages?
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
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
how to process MM_MCINOTIFY messages?
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
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
- Site Admin
- Mensajes: 9469
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
how to process MM_MCINOTIFY messages?
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
>
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
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
how to process MM_MCINOTIFY messages?
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
>
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
>
how to process MM_MCINOTIFY messages?
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
>>
>
>
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
>>
>
>
how to process MM_MCINOTIFY messages?
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
>>
>
>
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
>>
>
>