Help with word document!

Status
Not open for further replies.

CobraStrike4

Posts: 15   +0
i had to do a paper and its really long. i saved it as Xml as usual and it has been fine. i opened it to make some final fixes and it looks like this:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><?mso-application progid="Word.Document"?>
<w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:number="urn:eek:asis:names:tc:eek:pendocument:xmlns:datastyle:1.0" xmlns:w10="urn:schemas-microsoft-com:eek:ffice: word" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:eek:="urn:schemas-microsoft-com: office: office"
thats only a little bit of it. please tell me how to get it back to normal!
sorry about the smiles
 
Retrieve in it word, then watch the box at the bottom of the screen as you file or save it as a .doc file, then review the ?xml info.

The Document Object Model (DOM) class is an in-memory representation of an XML document. The DOM allows you to programmatically read, manipulate, and modify an XML document. The XmlReader class also reads XML, however it provides non-cached, forward-only, read-only access. This means that there are no capabilities to edit the values of an attribute or content of an element, or the ability to insert and remove nodes with the XmlReader. Editing is the primary function of the DOM. It is the common and structured way that XML data is represented in memory, although the actual XML data is stored in a linear fashion when in a file or coming in from another object.
There is plenty of useful information on xml documents and file structure in the Microsoft knowledge base, or even with a Google search.
 
Status
Not open for further replies.
Back