Reputation: 11
How can i get data from textfield in webbrowser url in VB6
WebBrowser1.Navigate2 "http://hamariweb.com/islam/islamicnames.aspx?e=TEXT"
TEXT = at that place i want to insert text from text field
Upvotes: 0
Views: 236
Reputation: 2951
If your textbox control has the name Text1 then you can use the following code
WebBrowser1.Navigate2 "http://hamariweb.com/islam/islamicnames.aspx?e=" & Text1.Text
Upvotes: 1