Skip to content

XML / XSL

Discussions on XML and related technologies

This category can be followed from the open social web via the handle xml-xsl@forum.codeproject.com

2.6k Topics 6.8k Posts
  • test

    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Why is loadXML failing?

    help question
    6
    0 Votes
    6 Posts
    0 Views
    J
    Michael Dunn wrote: Jambolo wrote: BSTR( L"< ParticleSystem />" ); That is still not correct, you need to make a real BSTR or use a wrapper class like _bstr_t Well, it worked just fine, so I'm not convinced. Regardless, I am using CComBSTR for the real code, but I will keep that in mind for next time.
  • Help on MSXML XML pattern and xml path

    c++ data-structures regex xml help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • XML, XSLT, and Namespaces

    xml question tools help
    2
    0 Votes
    2 Posts
    0 Views
    J
    Use the exclude-result-prefixes attribute on the stylesheet. (Replying to my own post again!) "Blessed are the peacemakers, for they shall be called sons of God." - Jesus "You must be the change you wish to see in the world." - Mahatma Gandhi
  • Using XPath on xsd

    xml database tutorial question
    5
    0 Votes
    5 Posts
    0 Views
    J
    OK - thanks very much for your help Jeremy
  • Create XSD from XML

    xml question csharp database
    2
    0 Votes
    2 Posts
    0 Views
    D
    Open your XML data file in Studio, you said you're using VB .NET so I have to assume your using Visual Studio here as well ... anyway, right-click and select the Create Schema option; this will build an XSD file from the XML file. Once you've done that, and the XSD is open in the editor, you can make changes as you see fit. When your done with your changes to the XSD, right-click, select the Generate DataSet. Go to the form you want to use the DataSet on and drop a DataSet component on the form. From the typed drop-down list, select your XSD file and you're ready to go. Hope this helps(?) D.
  • MS XML Parser and IE

    collaboration xml question announcement
    3
    0 Votes
    3 Posts
    0 Views
    J
    Thanks! :rose: "Blessed are the peacemakers, for they shall be called sons of God." - Jesus "You must be the change you wish to see in the world." - Mahatma Gandhi
  • Delete item from xml???

    sysadmin testing beta-testing xml question
    3
    0 Votes
    3 Posts
    0 Views
    D
    ... and replace "Microsoft.XMLDOM" with "MSXML2.DOMDocument" optionally followed by a version number, like "MSXML2.DOMDocument.4.0"
  • Text to XML

    xml question csharp visual-studio tutorial
    2
    0 Votes
    2 Posts
    0 Views
    P
    you have to read the text into your program and convert it into xml. "When the only tool you have is a hammer, a sore thumb you will have."
  • XMLSchema and C#

    csharp xml database visual-studio tutorial
    2
    0 Votes
    2 Posts
    0 Views
    M
    You can use XmlDataDocument class to impotr XML file to a DataSet and set the datasource of ComboBox with DataSet. I'm not sure what do you mean by enumeration in Schema?! Hope it helps Mazy No sig. available now.
  • Cant Create File???

    sysadmin windows-admin help question workspace
    2
    0 Votes
    2 Posts
    0 Views
    P
    Set OutputXMLFile = fso.CreateTextFile(@"c:\xx.htm",true); "When the only tool you have is a hammer, a sore thumb you will have."
  • read xml file 'Hello world'

    xml help
    3
    0 Votes
    3 Posts
    0 Views
    P
    LoadXml expects the string to be the XML you should be using Load(filename) "When the only tool you have is a hammer, a sore thumb you will have."
  • Problem with typed datasets and column expressions

    help database xml question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Replacing forbidden chars

    c++ xml json question
    2
    0 Votes
    2 Posts
    0 Views
    A
    I've written a spirit (http://spirit.sourceforge.net) grammar that does that. You can download it at http://iobind.sourceforge.net
  • Solution of your IT/Computer science Problems

    csharp c++ oracle java
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Generic calc engine?

    xml tutorial question
    2
    0 Votes
    2 Posts
    0 Views
    P
    >> Would it be possible?? Sure. Your basically talking about a XML Processor much the same as XSLT or any other. You define a language and then develop the processor right? Not that it is a simple task to complete but the concept is simple. "No matter where you go, there your are..." - Buckaoo Banzi -pete
  • Hard work gone to waste, help please !!!

    help csharp visual-studio com design
    3
    0 Votes
    3 Posts
    0 Views
    J
    exactly, do you have some ideas Da Intern
  • modifying urls in XML docs

    html regex xml question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • create xml file using streamwriter

    xml help
    4
    0 Votes
    4 Posts
    0 Views
    A
    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 Regards:) Daniel