G Georg Member Licensed User Longtime User Jan 19, 2009 #1 Hello how can I save a web page from IE or webbrowser.dll on the Pocket PC?
M Mr_Gee Active Member Licensed User Longtime User Jan 19, 2009 #2 use the HTTP.dll and use the string variable... B4X: Request.New1(URL) Response.New1 Response.Value = Request.GetResponse string = Response.GetString 'Get the Response string. Response.Close
use the HTTP.dll and use the string variable... B4X: Request.New1(URL) Response.New1 Response.Value = Request.GetResponse string = Response.GetString 'Get the Response string. Response.Close
M mjcoon Well-Known Member Licensed User Jan 28, 2009 #3 I too have been irritated that there is no "save" in IE Mobile. But to have a separate app to do this would only be useful if it did the same as IE (and no doubt many other browsers) and also saved the required images etc. Is there an easy way to do that? Mike.
I too have been irritated that there is no "save" in IE Mobile. But to have a separate app to do this would only be useful if it did the same as IE (and no doubt many other browsers) and also saved the required images etc. Is there an easy way to do that? Mike.
Erel B4X founder Staff member Licensed User Longtime User Jan 28, 2009 #4 The attached program saves a web page with its images. The html is updated to point to the saved images. Make sure to download both the main program and the module. Attachments DownloadPage.sbp 816 bytes · Views: 459 SavePage.bas 2.6 KB · Views: 389
The attached program saves a web page with its images. The html is updated to point to the saved images. Make sure to download both the main program and the module.