So there is a button called btnstart also a text box called tbUrl. Basically I want it so if you type in sgvfksedhfui.com it will start [url]
https://www.(whats[/url] in tburl).com
Ok so this is what you would do, same code for process.start
but instead use
process.start(tbURL.text)
If https:// and .com are not part of the box (which really it should be)
you could do some concatination.
So
Dim urlString as string
urlString = "https://" & tburl.text & ".com"
process.start(urlString)