I am trying to capture the notify event in a Win32::GUI application when I load 
a file using winmm and mciSendStringA. According to Microsoft I can pass in a 
notify flag so that it will post an MM_MCINOTIFY message when the device 
completes an action. 
http://msdn.microsoft.com/en-us/library/ms713401(VS.85).aspx

How can I capture that event with Win32::GUI::Dialog? Is is like a Terminate 
event? sub MainWindow_Terminate{...} I tried sub MainWindow_MM_MCINOTIFY{...} 
but it did not work.



I have also tried Hook but that did not work either:

my $MM_MCINOTIFY = 953;

$mainwindow->Hook($MM_MCINOTIFY, \&mciNotify);



#########################

sub mciNotify{

    print "mciNotify: @_\r\n";

    return 1;

    }







Thanks for any pointers.

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
http://perl-win32-gui.sourceforge.net/

Reply via email to