How to draw a point in VC, can there be functions to display it? I originally wanted to use the map method to post each point and display it like a bitmap, but it seems too slow, please advise!
CDC :: FillRect is recommended.
If only one point is drawn, it is generally invisible to the naked eye, and usually larger.
COLORREF SetPixel (
HDC hdc,
int X,
int Y,
COLORREF crColor
);