[
Lists Home |
Date Index |
Thread Index
]
On Friday 19 July 2002 12:30, Nicole Redmond wrote:
> How do I add a new line to the XML displayed in the browser and in the file
> opened by a text editor such as Notepad without changing all of the ints to
> strings?
Where do you want to add a newline? All you are doing is setting an attribute
on an element... do you want to include the newline in the value of the
attribute, or between elements, or what?
>[...]
> for(i=0;i<MAX;i++)
> {
> tmpNum = GetNumber(i);
> //many other ints defined here
> }
I don't know C++ very well, but what is the point of this? Every time through
the loop, you overwrite the value of tmpNum. Why not just remove the loop
and say 'tmpNum = GetNumber(MAX-1);'?
Did you mean to have the code that follows this (where you create the element
and set the attribute) inside of the loop?
--
Peter Davis
|