Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. How to Convert Excel sheet file to .cvs format using VC++

How to Convert Excel sheet file to .cvs format using VC++

Scheduled Pinned Locked Moved C / C++ / MFC
c++helptutorial
4 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    SnaKeBeD
    wrote on last edited by
    #1

    hi all, please anybody help me in solving this.......... thanks in advance

    swaroop

    H A D 3 Replies Last reply
    0
    • S SnaKeBeD

      hi all, please anybody help me in solving this.......... thanks in advance

      swaroop

      H Offline
      H Offline
      Hamid Taebi
      wrote on last edited by
      #2

      See http://www.convertspot.com/[^]


      WhiteSky


      1 Reply Last reply
      0
      • S SnaKeBeD

        hi all, please anybody help me in solving this.......... thanks in advance

        swaroop

        A Offline
        A Offline
        Anurag Gandhi
        wrote on last edited by
        #3

        The easiest way i thinnk is: Open the excel sheet programmetically, save it as .cvs or .csv format or whatever format you want. To do that you need to improt excel class from type library. For details go to MSDN. Please let me know if you find the better way at soft.gandhi@gmail.com.

        Anurag Gandhi. http://www.softgandhi.co.nr

        1 Reply Last reply
        0
        • S SnaKeBeD

          hi all, please anybody help me in solving this.......... thanks in advance

          swaroop

          D Offline
          D Offline
          David Crow
          wrote on last edited by
          #4

          Using Excel Automation, do something like:

          _Application app;
          Workbooks books;
          _Workbook book;

          if (app.CreateDispatch("Excel.Application") == TRUE)
          {
          books = app.GetWorkbooks();

          book = books.Open("c:\\\\book1.xls", ...);
          
          book.SaveAs(COleVariant("c:\\\\book1.cvs"), ...);
          
          app.Quit();
          

          }


          "A good athlete is the result of a good and worthy opponent." - David Crow

          "To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups