The program make the list from 1 the multiple line of article for a specific date.
Each day it makes a new list that have to be add to the old one.
I've seen how to parse the XMlFile with XmlSax to retrieve the file.
I know that I can made a XML file from scratch but I would like to know how to make it with XML builder (add the new lines to the old one).
with a for next loop ? how?
Sub Activity_Create(FirstTime As Boolean)
Dim x As XMLBuilder
x = x.create("list")
x = x.e("depot").a("date", "date")
For i = 1 To 10
x = x.e("article").text("Item #" & i).up
Next
x = x.up
x = x.up
Dim props As Map
props.Initialize
props.Put("indent", "yes")
Log(x.asString2(props))
End Sub