CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: HTTP GET in VB

  1. #1
    Guest

    HTTP GET in VB

    Hello,

    I need to know how to do an HTTP GET in VB. I would be retrieving a .csv file from the web and returning its contents for further parsing. Is there a way to do this using VB 6.0?

    Best Reagrds,

    CCC


  2. #2
    Guest

    Re: HTTP GET in VB

    If I am getting your point correctly.. You want to retrieve a .csv file from a web-server. If that so, It can be done using Internet Transfer control .

    else if you don't have a control over the server, then you can put the .csv file on a webpage as a table(using TDS), surf that web-page in your application using web-browser control(of course keeping it invisible) and then get the .csv file from the Internet Temp folder . The .csv file would get downloaded to the machine


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured