how do you open multiple programs in 1 icon. if it helps i am running windows 7. i know that you have to use a .BAT but i dont know what to put into it.
Well here is a sample of a CMD batch file that will start multiple programs.
1 2 3 4 5 6 7 8 9
@echo off
echo Opening Multiple Programs:
echo Starting Notepad:
start "" notepad
echo Starting MSWord2007:
start """C:\Program Files (x86)\Microsoft Office\Office12\WINWORD.exe"
REM Repeat in this format. The empty "" are required for paths not in System32 like MSWord. Just copy the lines that start with echo and start and change the information after them to load programs.
pause
Long live work-around oriented programming. Seriously, this is the worst practice I've ever seen. If you want to display images in your program window, use SFML. Also read this: http://www.cplusplus.com/forum/articles/28558/
it works but it opens up an extra window. how do i prevent that?
You can't. If you want to use a shell then you get the cmd window.
The only way to avoid it is to write a Win32 GUI application that starts with a hidden window what launches your programs... in which case you might as well just do that all to begin with..
The other answer is to draw directly into your adventure story console window. :o)