Click here to Skip to main content
15,892,161 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralHard work gone to waste, help please !!! Pin
jphuphilly24-Aug-03 12:50
jphuphilly24-Aug-03 12:50 
GeneralRe: Hard work gone to waste, help please !!! Pin
ZoogieZork24-Aug-03 14:27
ZoogieZork24-Aug-03 14:27 
GeneralRe: Hard work gone to waste, help please !!! Pin
jphuphilly24-Aug-03 14:43
jphuphilly24-Aug-03 14:43 
Generalmodifying urls in XML docs Pin
Steve Severance22-Aug-03 5:01
Steve Severance22-Aug-03 5:01 
Generalcreate xml file using streamwriter Pin
jphuphilly21-Aug-03 3:00
jphuphilly21-Aug-03 3:00 
GeneralRe: create xml file using streamwriter Pin
adaoja21-Aug-03 10:03
adaoja21-Aug-03 10:03 
GeneralRe: create xml file using streamwriter Pin
jphuphilly22-Aug-03 3:39
jphuphilly22-Aug-03 3:39 
GeneralRe: create xml file using streamwriter Pin
adaoja22-Aug-03 4:51
adaoja22-Aug-03 4:51 
You can use XmlDocument.CreateElement and .AppendChild to add your information to your document.
in c++

given that Child,Name,TopElement all are XmlElements
sData is the content, the info in the element;

ChildElement = doc->CreateElement("tagname");
TopElement->AppendChild(ChildElement);
NameElement = doc->CreateElement("tagname");
NameElement->InnerText = sData;
ChildElement->AppendChild(NameElement);

.. or something like that

I guess you have to check in the button_click function if you already have pressed the button and if not -> create a new xmldokument

RegardsSmile | :)

Daniel
GeneralSlashdot RSS Stylesheet Pin
Steve McLenithan20-Aug-03 7:31
Steve McLenithan20-Aug-03 7:31 
GeneralRe: Slashdot RSS Stylesheet Pin
Daniel Bright20-Aug-03 15:06
Daniel Bright20-Aug-03 15:06 
GeneralRe: Slashdot RSS Stylesheet Pin
Steve McLenithan20-Aug-03 15:30
Steve McLenithan20-Aug-03 15:30 
GeneralXML as a config file Pin
Steve McLenithan19-Aug-03 17:37
Steve McLenithan19-Aug-03 17:37 
GeneralRe: XML as a config file Pin
Steve McLenithan19-Aug-03 17:51
Steve McLenithan19-Aug-03 17:51 
GeneralRe: XML as a config file Pin
Nick Parker19-Aug-03 18:09
protectorNick Parker19-Aug-03 18:09 
GeneralRe: XML as a config file Pin
Steve McLenithan20-Aug-03 3:14
Steve McLenithan20-Aug-03 3:14 
GeneralRe: XML as a config file Pin
Nick Parker20-Aug-03 4:54
protectorNick Parker20-Aug-03 4:54 
GeneralReading XML file with VB.Net Pin
sybux200019-Aug-03 8:41
sybux200019-Aug-03 8:41 
GeneralRe: Reading XML file with VB.Net Pin
adaoja19-Aug-03 10:21
adaoja19-Aug-03 10:21 
GeneralRe: Reading XML file with VB.Net Pin
sybux200019-Aug-03 11:46
sybux200019-Aug-03 11:46 
GeneralRe: Reading XML file with VB.Net Pin
adaoja19-Aug-03 22:11
adaoja19-Aug-03 22:11 
GeneralRe: Reading XML file with VB.Net Pin
sybux200020-Aug-03 10:35
sybux200020-Aug-03 10:35 
GeneralRe: Reading XML file with VB.Net Pin
adaoja21-Aug-03 0:55
adaoja21-Aug-03 0:55 
GeneralUsing SAX to generate DOM documents Pin
Steve S19-Aug-03 1:44
Steve S19-Aug-03 1:44 
QuestionGeneric calc engine? Pin
Andy H18-Aug-03 10:23
Andy H18-Aug-03 10:23 
AnswerRe: Generic calc engine? Pin
palbano28-Aug-03 8:33
palbano28-Aug-03 8:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.