Hi,
I'm trying to draw some simple bitmaps onto a dialog based VC6 app.
I'd like to be able to set the color of individual pixels (and/or groups of pixels)
CDC *pDC;
pDC = (CDC*)&dc;
CBitmap Bmp;
CBrush brBits;
WORD wBits[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }...