Simple question: How do you execute a url say "http://www.site.com" from Visual Basic code.
Simple question: How do you execute a url say "http://www.site.com" from Visual Basic code.
For example:
http://www.youtube.com/watch?v=VmacM9QPqp8
For example:
http://www.youtube.com/watch?v=VmacM9QPqp8
Calling Process.Start is the effective equivalent of opening a command prompt and typing a command.
2007-2013
Why is my data not saved to my database? | Communicating between multiple forms | MSDN Data Walkthroughs
MSDN "How Do I?" Videos: VB | C#
VBForums Database Development FAQ
My CodeBank Submissions: VB (*NEW* More Random Random Numbers) | C# (*NEW* More Random Random Numbers)
My Blog: Using Parameters in ADO.NET | Keyboard Events | Assemblies & Namespaces
I would like to bring the url up in a new browser.
In a new browser? Does it have to be users default browser?
In this case the easiest way to navigate the user's default Internet browser to a specified URL is to call System.Diagnostics.Process.Start(string).
for example
Code:Process.Start("http://www.logos.com/");