tags:

views:

30

answers:

1

I'm 99% sure there was a way to show an address bar (and also a status bar with a loading progress bar) in .net's WebBrowser control, instead of writing one myself. I think it was something with the underlying control, not a very "official" way. I just can't remember how I did it.

+3  A: 

The example code on the MSDN docs page discusses how to add an address bar for use with the WebBrowser control.

There is also the article How to: Add Web Browser Capabilities to a Windows Forms Application

Justin Ethier