Mukaram Jawaid
Mukaram Jawaid

Reputation: 11

Insert Data From Textfield in webbrowser Url

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

Answers (1)

Hrqls
Hrqls

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

Related Questions