View Single Post
  #22 (permalink)  
Old 08-29-2006, 11:12 AM
CheeseBurgerMan CheeseBurgerMan is offline
Learning Programmer
 
Join Date: Jul 2006
Posts: 78
Credits: 0
Rep Power: 9
CheeseBurgerMan is on a distinguished road
Default

Thank you very much for the help. Everything is at least mostly working now.

I have one more little question, then I'll be out of your hair (for a little while at least ) How do I set a wildcard for a URL? For example, in the following code

Code:
' WebBrowser1.Url Is "http://www.writely.com/" Then
        WebBrowser1.Navigate(bstrUrl)
        Else : System.Diagnostics.Process.Start(bstrUrl)
        End If

How would I get it so that http://writely.com/* opens the URL in WebBrowser1, while everything else still opens in the default browser?
Reply With Quote