calling an webservices

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ananth
    New Member
    • Nov 2006
    • 75

    calling an webservices

    Hi All,
    I am new to vb ,i need to call an webservice which is basically an XML file,
    from a button click can any one you help me out on this pls.
  • albertw
    Contributor
    • Oct 2006
    • 267

    #2
    Originally posted by ananth
    Hi All,
    I am new to vb ,i need to call an webservice which is basically an XML file,
    from a button click can any one you help me out on this pls.
    hi

    use shellexecute for this.
    put

    Code:
    Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    in your general declaration
    and

    Code:
    ShellExecute hWnd, "open", http-address , NILL, NILL, Empty
    in your programcode

    Comment

    Working...