|
|
|
|
|
MCIExecute (Function) In french: MCIExecute Runs an MCI command (Media Control Interface). // Open the "C:\MyFiles\File.AVI" file // in the "IMG_ImageAVI" Image control ResExecuteMCI = MCIExécute("Open C:\MyFiles\File.AVI" + ... "Alias AVI Style Child Parent" + Handle(IMG_ImageAVI)) ResExecuteMCI2 = MCIExécute("Play AVI Notify")
MCIOpen("C:\MesFichiers\Fichier.AVI", "AVI", MciStyleChild, IMG_Vidéo, MciModeNormal)
MCIExecute("Play AVI repeat")
Syntax
<Result> = MCIExecute(<Command to execute> [, <Window name>])
<Result>: Boolean - True if the MCI command was run,
- False otherwise. To find out:
<Command to execute>: Character string MCI command to run.The different MCI commands can be accessed with Windows via the MMSYSTEM DLL. This library, provided by Microsoft, contains all the functions required to use media devices. For more details, see the Microsoft documentation. The MciWait constant can be added to this string. This constant is used to indicate that the program must wait for the end of the MCI command to run the rest of application. <Window name>: Optional character string Name of the window used to intercept and manage the different messages sent by MMSYSTEM.DLL. These messages are in MM_xxxxxx format and can be retrieved with Event. You can for example get messages regarding the management of the CD ROM or Joystick. Remarks The result of the MCI command is returned by MCIRetrieve.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|