Re: Drawing in CHtmlView
It is not going to be easy, if possible at all. If you want to draw
something, simply do it using the html.
CHtmlView is a CFormView that has a browser window inside of it that takes
up the entire area of the CFormView (m_wndBrowser).
All the drawing is done by and in that control. You will be fighting with
control.
In order to draw something in that window you will have to replace that
control with your own so that you can catch its WM_PAINT message. This
means that you have to create your own CHTMLView class from scratch, and
instead of using CWnd as the base for m_wndBrowser, you can use CMyWnd
derived from CWnd which can catch the WM_PAINT message and do your own
drawing.
With all that said, I'm not sure if the browser control will simply paint
over what you have painted.
You might also be able to subclass the m_wndBrowser using SetWindowLong, to
change it's default window proc.
AliR.
"nexolite" <nexolite@discussions.microsoft.com> wrote in message
news:043133A4-385E-44D0-9BC0-5657B91ED744@microsoft.com...
Please tell me how can I draw in a CHtmlView or how can I get the device
context of CHtmlView?