Здравствуйте, Elronde, Вы писали:
E>Как сделать в MFC бегущую точку и притом чтобо она мигала
1) При чем тут MFC?
2) RTFM:
CDC::SetPixel
COLORREF SetPixel( int x, int y, COLORREF crColor );
COLORREF SetPixel( POINT point, COLORREF crColor );
SetPixel
The SetPixel function sets the pixel at the specified coordinates to the specified color.
COLORREF SetPixel(
HDC hdc, // handle to DC
int X, // x-coordinate of pixel
int Y, // y-coordinate of pixel
COLORREF crColor // pixel color
);
3) Используй DirectDraw — так будет быстрее