View Single Post
Old 03-22-2003, 03:33 PM   #2 (permalink)
Travis Dane
Code Monkey
 
Travis Dane's Avatar
 
Join Date: Feb 2003
Location: Netherlands
Posts: 89
Travis Dane is on a distinguished road
Send a message via ICQ to Travis Dane
To run something within your program as if it was clicked on,
Do this:

Code:
 #include <windows.h>

 int main(void)
 {
    system("c:\\programs\\test.mp3");  // Any file will work, Not just .EXE or .MP3 in this case
    return 0;
 }
__________________
OpenGL, DirectX
Travis Dane is offline   Reply With Quote