(04-18-2012, 04:10 PM)jessehmusic Wrote: <CATEGORY Name="Journal">
<Entry Name="Note_Patient_Name">Patient, Eric</Entry>
<Entry Name="Note_Patient_Text">1 July 2001 , an patient called Eric arrived today , the report says he is in coma , take care of him in the "Emergancy Hall"</Entry>
<Entry Name="Note_Patient1_Name">Patient , Richard</Entry>
<Entry Name="Note_Patient1_Text">3 July 2001 , an patient called Richard arrvied with some disease , never seen something like that before , take him down to the "Disease hall"</Entry>
</CATEGORY>
Probably the Problem is that the Quotation Marks are probably interpreted as values of attributes ->
In easy words: Dont write " in your text.
But if you still want to use that, then write 2 times this symbol ' . It looks equal, but won't be interpreted as an attribute.
This should be the solution:
<CATEGORY Name="Journal">
<Entry Name="Note_Patient_Name">Patient, Eric</Entry>
<Entry Name="Note_Patient_Text">1 July 2001 , an patient called Eric arrived today , the report says he is in coma , take care of him in the ''Emergancy Hal''</Entry>
<Entry Name="Note_Patient1_Name">Patient , Richard</Entry>
<Entry Name="Note_Patient1_Text">3 July 2001 , an patient called Richard arrvied with some disease , never seen something like that before , take him down to the ''Disease hall''</Entry>
</CATEGORY>
NB! Do not just copy this part into your text! You need to understand what we want to tell you, otherwise you will have the same problem very soon again.