Store contents from rich text box to xmlfile

Fahad_nasir

New member
Joined
Nov 22, 2007
Messages
4
Location
Pakistan
Programming Experience
Beginner
i m doing my final project which is an eBook creator in vb.net(2005). i try to store contents of a book in xml which are written in richtext box.
but i have face a problem whrere to start the xml code.
can i create a new xml file
or
code xml behind the richtext box.
yours truly
Fahad Khan
 
Porject schema

HTML:
<?xml version="1.0" encoding="utf-8" ?> 
<Book>
  <metainfo>
    <bookname>

    </bookname>
    <author>
      <name>

      </name>
      <qualification>

      </qualification>
    </author>
    <keyword>

    </keyword>
    <keyword>

    </keyword>
    <edition>

    </edition>
    <publisher>

    </publisher>
    <yearOfPublication>

    </yearOfPublication>
  </metainfo>


  <toc>
    <part id="" name="" text="">
      <part id="" name="" text="">

      </part>
    </part>

  </toc>
  <meterial>
    <part id="">
      <object id= "">
        <image path="Aidio\name.jpg">
          <caption>
            <it>System view</it> of the software engineering
          </caption>
          <description>
          </description >
        </image>
      </object>
      <object id="">
        <text>

          </text>
          </object>
    </part>

  </meterial>

</Book>
 
Back
Top