Putting a string variable into a "pre"set text

Hello,
Is there a way that the use would input a word such as Microsoft
and that input "Microsoft" would show up as like this:

http://www.google.com/search?hl=en&q=Microsoft
onto a text box?

more examples:
Macromedia:
http://www.google.com/search?hl=en&q=Macromedia

Sony
http://www.google.com/search?hl=en&q=Sony

Dell
http://www.google.com/search?hl=en&q=Dell

define: Serene
http://www.google.com/search?hl=en&lr=&q=define%3A+serene

Thanks A Lot!

Please help me!
Thank you!
Keehun Nam

[569 byte] By [KN1123] at [2007-12-17]
# 1
Hi,

You could just concat the string with the value of your textbox:
Dim source As String = " http://www.google.com/search?hl=en&q=" + TexBox1.Text
cheers,

Paul June A.Domag

PaulDomag at 2007-10-6 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 2
Thanks a lot for that!

but now, I want the IE 6 or Mozilla FireFox to open up with that address...
Is it possible? If so, how?

Thank You!

KN1123 at 2007-10-6 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 3
Hi,

Try the Process class:

Process.Start("http://www.google.com/search?hl=en&q=" + TextBox1.Text)

BTW, the process class could be found in the System.Diagnostics namespace. So you must declare this in the upper part of your code (outside the class) Imports System.Diagnostics.
cheers,

Paul June A. Domag

PaulDomag at 2007-10-6 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 4
Thank You!
KN1123 at 2007-10-6 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...