Hi, I am making a Sheduling program, in which I designed my own graphical interface using fillrect, lines, textout, ect...
I hold the picture in memory, then paint it when it changes like this:
mDC = CreateCompatibleDC(me.hdc)
hBitmap = CreateCompatibleBitmap(me.hdc, 100, 100)
SelectObject(hDC, hBitmap)
Form_Paint/Form_Click()
update chart and work shifts according to what the user clicks,
BitBlt Me.hdc , 0, 0, 100, 100, mDC, 0, 0, vbScrCopy
End
Once the user has finished, I need to be able to print the Shedule out.
Can anyone tell me how I would Print out mDC onto a piece of paper?
Thanks, Nick