How to show address bar in WebBrowser control in a Windows Form?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I could be mistaken but I don’t believe the WebBrowserControl includes the address bar, toolbar, etc. I believe you’ll have to create your own address bar. You could use the
NavigatedorNavigatingevents to determine when the URL is changing and update the text box.Edit: My form has a
TextBoxnamed textBox1, aButtonnamed button1 and aWebBrowserControlnamed webBrowser1