On Apr 7, 1:41 am, Cerebrus <[email protected]> wrote: > Well, you can simply create a WebBrowser control in code, navigate and > manipulate it to your desire and never add the control to the Form so > it will not display. Alternatively, you can keep it's visibility off > the entire time. > > On Apr 7, 6:01 am, Jason Cavett <[email protected]> wrote: > > > I'm working with the WebBrowser control, and it works great for > > opening and navigating pages. Unfortunately, the downside of the > > control is that it requires to be displayed in order to do the > > rendering. Is it possible, or is there another way, of "navigating" > > web pages without having to actually display them? > > > Thanks for any help you can give.
That's the problem, actually. If you don't display the WebBrowser control, it will never render the website I am trying to access (via the WebBrowser.Navigate(string website) method). This seems to be somewhat shortsighted on Microsoft's part. That's why I'm wondering if they did provide a way to do this elsewhere, or if I'm completely missing how to do this.
