A
Agustin
Hi. I'm developing some kind of web browser. Im wraping the htmlview.dll
only for rendering html. All concerning web download I'm using a
WebRequest. One thing I saw is that when I use the htmlview.dll for
navigate, for example to google's page, the web request maybe has some
extra information because download de pda google page. But when I
request google page using de WebRequest I think I'm obtaining the normal
desktop google's page, because when I try to render it, using my wraper,
it get stock and don't render at all.
request = WebRequest.Create("htpp://www.google.com");
.... Obtain the string content and then..
myRender.AddText(content) (Wraps SendMessage(_hwnd, DTM_ADDTEXTW, 0, txt)
myRender.EndOfSorurce(); (Wraps SendMessage(_hwnd, DTM_ENDOFSOURCE, 0, 0)
The way that I implement the wraper is based on this example
http://www.gotdotnet.com/Community/...mpleGuid=baf7ab21-4037-4a0f-9b39-e3914000e9cc
Thanks you
only for rendering html. All concerning web download I'm using a
WebRequest. One thing I saw is that when I use the htmlview.dll for
navigate, for example to google's page, the web request maybe has some
extra information because download de pda google page. But when I
request google page using de WebRequest I think I'm obtaining the normal
desktop google's page, because when I try to render it, using my wraper,
it get stock and don't render at all.
request = WebRequest.Create("htpp://www.google.com");
.... Obtain the string content and then..
myRender.AddText(content) (Wraps SendMessage(_hwnd, DTM_ADDTEXTW, 0, txt)
myRender.EndOfSorurce(); (Wraps SendMessage(_hwnd, DTM_ENDOFSOURCE, 0, 0)
The way that I implement the wraper is based on this example
http://www.gotdotnet.com/Community/...mpleGuid=baf7ab21-4037-4a0f-9b39-e3914000e9cc
Thanks you