CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2010
    Posts
    3

    Post Uploading CSV file(Excel) to MS Access in VB.Net

    In vb.net, I created one upload button in windows form. When I click that button, I want to upload csv file to MS Access database. Can anyone please help me with coding in vb.net to upload csv file.

  2. #2
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: Uploading CSV file(Excel) to MS Access in VB.Net

    First of all. You don't upload it you import it. If the access database is on a web server then you upload and then import. Basically you will need to write code to read the csv file and then insert each record into your database.
    Always use [code][/code] tags when posting code.

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