Re: How to invoke avi player
Use system() function with parameter "mpaly32 pathof avi" in handler to play avi
in a different address sapce.
Re: How to invoke avi player
The System with the parameter "mplay AviFileName" did not work.
But there is one alternative for this.
Use WinExec command and pass the lpszCmdLine as
RUNDLL32.EXE amovie.ocx,RunDll AVIFILENAME
Pass NULL for lpszAppName. This will invoke the active movie control with the avi.
Re: How to invoke avi player
use "mplay32 avifilename" ,not "mplay avifilename" as a parameter for the system()
call.