Jump to content

MORE help plz??

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
6 replies to this topic

#1
russian777

russian777

    Newbie

  • Members
  • PipPip
  • 29 posts
Hey thanks everyone for posting responses , i genuinely appreciate the help.

1. Need some one to explain how to open files such as word files using code.

#2
dargueta

dargueta

    Writes binary right handed and hex left handed

  • Moderators
  • 4,713 posts
That would be very tricky without some sort of API or documentation on the file format, unless you're using embedded VBA, not C/C++. I found some doc specs on the Word 97 format, but that's it.

Attached Files



#3
manux

manux

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 234 posts
The word format is proprietary, There is no public specs about it and you would need to reverse engineer it(like Google did for 97-2003's .doc I think).

Though there are other open source formats, like OpenOffice's.
Good luck anyways :) .

#4
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
OpenOffice.org has published specs (not complete) on several MS Office document formats. I was reading the Excel format earlier today and it was both thorough and unpleasant.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#5
dargueta

dargueta

    Writes binary right handed and hex left handed

  • Moderators
  • 4,713 posts
...like many other Microsoft products.

#6
yuyujoke

yuyujoke

    Newbie

  • Members
  • Pip
  • 7 posts

dargueta said:

...like many other Microsoft products.

i think so~

#7
TkTech

TkTech

    The Crazy One

  • Moderators
  • 1,396 posts
The new version of Office, and all future versions, support the Open Document standard. I would advise you don't bother with the older formats, whose structure changed dramatically between releases, and stick with the future (*_^) OpenOffice also natively supports this format.