show the site on the form?

seanvoth

Well-known member
Joined
Aug 5, 2006
Messages
58
Programming Experience
1-3
i want to make a search ingen so when i type in a site EX(google) it will send me to the site google, but i want it to show the site on the form please help thanks



VB.NET:
[SIZE=2]
[/SIZE][SIZE=2][COLOR=#0000ff]Dim[/COLOR][/SIZE][SIZE=2] web [/SIZE][SIZE=2][COLOR=#0000ff]As[/COLOR][/SIZE][SIZE=2] [/SIZE][SIZE=2][COLOR=#0000ff]Integer
[/COLOR][/SIZE][SIZE=2]web = Val(TextBox1.Text)
System.Diagnostics.Process.Start( web & (.com)
[/SIZE]
 
Add WebBrowser control to Form. Navigate it. WebBrowser1.Navigate("address")
 
Back
Top