Forum: C++ May 14th, 2003 |
| Replies: 6 Views: 5,093 Simplest way I can think of would be to set up a timer and update the coordinates of the ball in it. Call InvalidateRect and UpdateWindow to force an update of the screen.
Override the OnPaint... |
Forum: C May 14th, 2003 |
| Replies: 1 Views: 4,202 If this is a console app (DOS program) or UNIX program that outputs to standard output, you could redirect the output to your data file
program.exe >> datafile.dat
If this is a Windows... |