Announcement

Collapse
No announcement yet.

Excel

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Excel

    Hi,

    has anyone a solution to read excel (.xls) files direct with

    Powerbasic ?

    Regards

    matthias Kuhn

    ------------------

  • #2
    don't know how many of these are useful in dos, but:
    http://www.powerbasic.com/support/pb...ad.php?t=20546

    you could use shell out for the sheetstotab option.


    john



    ------------------

    Comment


    • #3
      To do it yourself, open the file in BINARY mode., i.e.,
      open "somefile.xls" for binary as #x

      This way, the program will ignore all control characters and
      you will have access to the entire file.

      Decoding the file structure, however, is something you will
      have to oversome yourself. There should be lots of info on the
      web about how to do this.

      Good luck!


      ------------------
      There are no atheists in a fox hole or the morning of a math test.
      If my flag offends you, I'll help you pack.

      Comment


      • #4
        I have code to write to an Excel file directly, but not
        read from it. http://www.planetsquires.com/downloads.htm That
        code could probably be adapted to PB/DOS easily.



        ------------------
        Paul Squires
        Cheetah Database System - "Nothing runs like a Cheetah"
        JellyFish Pro Editor - "Custom code editor for PowerBasic"
        www.planetsquires.com
        mailto:[email protected][email protected]</A>
        Paul Squires
        FireFly Visual Designer (for PowerBASIC Windows 10+)
        Version 3 now available.
        http://www.planetsquires.com

        Comment


        • #5

          Matthias -

          Here is a very detailed discussion of the file formats used in
          all versions of Excel.
          http://sc.openoffice.org/excelfileformat.pdf

          You will see that all recent versions (since Excel 5.0) use some
          version of BIFF with OLE2 storage.

          I have a data recovery application which reads OLE docfiles (used
          by Word, Excel and PowerPoint) but only at the metadata level. It
          reads a couple of streams but by brute force rather than trying
          to parse the formats. (The application has determine such things
          as whether it is looking at a complete or truncated file, what
          application created the file, the original file name where
          possible, etc.)

          I don't know of an existing DOS program that can read data
          from Excel files, but what you want to do should be possible.
          Also difficult. More like a marathon than a stroll.

          Bob




          ------------------

          Comment

          Working...
          X