Execute URL in VB

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bootzwiz
    New Member
    • Jan 2007
    • 14

    Execute URL in VB

    Any one guide me how to execute url in vbscript.

    Example : I need to pass parameters to the url and execute it. I dont need any output from url. When i pass parameters to the URL and execute it data will be inserted in to server.

    Any ideas?
  • gobblegob
    New Member
    • Dec 2007
    • 133

    #2
    hi,

    you need an example like this?

    Code:
    Private Sub Command1_Click()
    
        Dim TempStr As String
        Dim TempText As String    
        TempText$ = Text1.Text
    
    TempStr = "http://www.google.com.au/search?hl=en&q" & "=" & TempText & "&meta="
    
    WebBrowser1.Navigate2 TempStr
    With a bit of tweaking you can get it to do what you need.

    <<<Gobble>>>

    Comment

    Working...