I do believe you would be better off using the Webbrowser Control in place of the richtextbox... The richtextbox doesn't handle pictures all that well (I know, I know, it does sometimes
You can save the page along with all the graphics usign the webbrowser control. Let me demonstrate:
Private Sub Command1_Click()
WebBrowser1.ExecWB OLECMDID_SAVEAS, OLECMDEXECOPT_PROMPTUSER
End Sub
Private Sub Form_Load()
WebBrowser1.Navigate "http://wwwapps.ups.com/et
End Sub
Main Topics
Browse All Topics





by: mbeersPosted on 2000-07-06 at 22:07:06ID: 3220972
I am not positive on the Inet control, but I think the OpenURL only gathers the file specified in the url parameter. This is usually just the HTML so it would not grab all of the graphics, etc. in that file automagically. For that you would need to parse the HTML and use OpenURL on all of the subsequent <img src= you found in the HTML, and save those to a file as well.
There may be another control that can do that, but I am not aware of it.