Click here to Skip to main content
15,896,154 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Disable/Enable Toolbar buttons Pin
Eugene Pustovoyt30-Jul-03 18:16
Eugene Pustovoyt30-Jul-03 18:16 
GeneralRe: Disable/Enable Toolbar buttons Pin
Marissa18230-Jul-03 18:50
Marissa18230-Jul-03 18:50 
GeneralResizing Status Bar Panes Pin
Anonymous30-Jul-03 17:08
Anonymous30-Jul-03 17:08 
GeneralRe: Resizing Status Bar Panes Pin
Frank K30-Jul-03 19:34
Frank K30-Jul-03 19:34 
GeneralRe: Resizing Status Bar Panes Pin
Marissa18230-Jul-03 20:11
Marissa18230-Jul-03 20:11 
GeneralRe: Resizing Status Bar Panes Pin
Frank K31-Jul-03 20:12
Frank K31-Jul-03 20:12 
QuestionmciSendString? Pin
DaveE9th30-Jul-03 16:43
DaveE9th30-Jul-03 16:43 
AnswerRe: mciSendString? Pin
Maxwell Chen30-Jul-03 17:14
Maxwell Chen30-Jul-03 17:14 
Platform SDK: Windows Multimedia

MCI
The Media Control Interface (MCI) provides standard commands for playing multimedia devices and recording multimedia resource files. These commands are a generic interface to nearly every kind of multimedia device.


The mciSendString function sends a command string to an MCI device. The device that the command is sent to is specified in the command string.


Example in Platform SDK Doc:
DWORD PlayFromTo(LPSTR lpstrAlias, DWORD dwFrom, DWORD dwTo) 
{ 
    char achCommandBuff[128]; 

    // Form the command string.
    wsprintf(achCommandBuff, "play %s from %u to %u", 
        lpstrAlias, dwFrom, dwTo); 

    // Send the command string.
    return mciSendString(achCommandBuff, NULL, 0, NULL); 
} 


BuggyMax
GeneralRe: mciSendString? Pin
DaveE9th31-Jul-03 7:52
DaveE9th31-Jul-03 7:52 
GeneralQuestion Pin
nonahelmi30-Jul-03 16:01
nonahelmi30-Jul-03 16:01 
GeneralRe: Question Pin
nonahelmi30-Jul-03 16:03
nonahelmi30-Jul-03 16:03 
GeneralRe: Question Pin
Michael Dunn30-Jul-03 16:07
sitebuilderMichael Dunn30-Jul-03 16:07 
GeneralRe: Question Pin
Toni7830-Jul-03 16:14
Toni7830-Jul-03 16:14 
GeneralRe: Question Pin
Ryan Binns30-Jul-03 22:00
Ryan Binns30-Jul-03 22:00 
GeneralRe: Question Pin
Alexander M.,31-Jul-03 10:46
Alexander M.,31-Jul-03 10:46 
GeneralRe: How to open file in console program Pin
valikac30-Jul-03 19:54
valikac30-Jul-03 19:54 
GeneralRe: How to open file in console program Pin
Ryan Binns30-Jul-03 22:02
Ryan Binns30-Jul-03 22:02 
Questionhow to use Cimagelist to the bmp images? Pin
allenhu30-Jul-03 14:50
allenhu30-Jul-03 14:50 
GeneralConnecting to MySQL using VC++ Pin
mzc_noelle30-Jul-03 14:49
mzc_noelle30-Jul-03 14:49 
GeneralRe: Connecting to MySQL using VC++ Pin
John M. Drescher30-Jul-03 15:41
John M. Drescher30-Jul-03 15:41 
GeneralRe: Connecting to MySQL using VC++ Pin
mzc_noelle30-Jul-03 15:53
mzc_noelle30-Jul-03 15:53 
GeneralRe: Connecting to MySQL using VC++ Pin
PJ Arends30-Jul-03 19:59
professionalPJ Arends30-Jul-03 19:59 
QuestionHow to change Combobox style at runtime? Pin
Andrew Allen30-Jul-03 14:46
Andrew Allen30-Jul-03 14:46 
AnswerRe: How to change Combobox style at runtime? Pin
Eugene Pustovoyt30-Jul-03 18:22
Eugene Pustovoyt30-Jul-03 18:22 
GeneralRe: How to change Combobox style at runtime? Pin
Andrew Allen31-Jul-03 2:11
Andrew Allen31-Jul-03 2:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.