I am creating a vb6 app using the webbrowser control. I want to check the url of the webbrowser each time the document completes loading and fill the textbox(text2.text) with its url if the url is the value of another textbox(text1.text)
You should try it , it might give you result you want String url; url=webbrowswer1.url; if url= "yoururl" text2.text=url; end if