Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Cruisy

    from an xml String to the xml root element

    thx very much , that helped alot RimK
  2. Cruisy

    ActionListener question

    You can check if the right mouse button was clicked. here is the code for checking this: if ((m.getModifiers() & InputEvent.BUTTON3_MASK)== InputEvent.BUTTON3_MASK) { .... } the InputEvent.BUTTON3_MASK is static from the package java.awt.event m stands for the mouseEvent greetz Cruisy
  3. Cruisy

    from an xml String to the xml root element

    I'm having a hard time getting the root element from an xml string I get the xml in a String format and need the rootelement anyone know how to do this. It should be something with making it into a Document and then retrieving the root element i think but i seem to be looking over it.. any...
  4. Cruisy

    difference between xsl:element and..

    so if i want to overide the default xsl namespace i not should use : <xsl:element name=&quot;xsd:schema&quot;> <xsl:attribute name=&quot;xmlns:xsd&quot;> http://www.w3.org/2000/10/XMLSchema </xsl:attribute> ... </xslelement> but use the short version? <xsd:schema...
  5. Cruisy

    difference between xsl:element and..

    what is the difference between using <xsl:element name=&quot;tagname&quot;> ... </xsl:element> and <tagname> ... </tagname> I ask this because i get different outputs from these usages. help would be much appreciated [thumbsup2]
  6. Cruisy

    Single or Multiple XML files?

    It's best to do it with 1 big xml than multiple small ones. I had to make this choice to last year and tested both cases for their performance and the big file was slightly faster. I don't think it will be the parsing itself, but accessing the multiple xml streams makes it slower.
  7. Cruisy

    generate a namespace

    I'm trying to generate a namespace in the output xml that is different to the one i use in the xsl example: <xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; xmlns:xsd=&quot;http://www.w3.org/1999/XMLSchema&quot;> <xsl:output...
  8. Cruisy

    XML using Access 2000

    no you can't use xml features in Access2000 . Me to tried this , but had to upgrade to Access XP/2002

Part and Inventory Search

Back
Top