Forum: Java Aug 26th, 2004 |
| Replies: 4 Views: 12,562 I dont get it, whats the problem? |
Forum: C++ Jul 8th, 2004 |
| Replies: 8 Views: 6,684 Note that your going to have to include windows.h to do that; buy the way why not learn windows and make your game windows based because I hate to tell you man but dos is dead. |
Forum: Game Development Jul 5th, 2004 |
| Replies: 5 Views: 7,576 hay if ur using the win32 API then use vertical keys like VK_UP so ur code will look like this:
LRESULT CALLBACK MessageHandler(HWND hwnd, UINT message, WPARAM wparam,
... |
Forum: Java Jul 2nd, 2004 |
| Replies: 7 Views: 58,274 the code goes like this:
try
{
Runtime rt = Rintime.getRuntime() ;
Process p = rt.exec("Program.exe") ;
InputStream in = p.getInputStream() ;
OutputStream out = p.getOutputStream ();
... |