XML question

  • Thread starter Thread starter r0ddick
  • Start date Start date
R

r0ddick

hi!

i have a "little" problem.
i need to make a parser that will activate active-x control using c#
and xml.
i'm supposed to write a simple program in xml tht will have its var's
and if/then loops and my parser is supposed to recognize them and
activate the control acoringly..
now activateing control is no problem
writing xml is on problem
i just need a little push in right direction on how to make a parser
can anyone help?
 
What do you mean by an "xml program"? Xml is only a data format. I
assume that you have an xml file that contains "instructions" embedded
in the tags that indicate to your program when to create a control. Is
that what you want to accomplish?

Best Regards
Johann Blake
 
exactly :)

now i've mannaged to make a validation of my xml using dtd and xsl so
errors in my xml are reported nicely
as i can see now, there are about zilion ways of going trough xml files
but i need
one that will go tag by tag recognize the tag and do a proced.. asigned
to that tag

i'm experimenting with XPathNavigator but its not rekognizeing my empty
tags and i need it to because they are declarations for my program

any ideas ?
 
Back
Top