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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by chryo

  1. chryo

    Determine if an element exist

    If you want to write a separate XSL file instead of using the DOM, try the <xsl:if> function. It's format is <xsl:if test=&quot;your test here...&quot;>XSL code to be processed if test is true</xsl:if> Here is an example based on your XML (using if in two places, phone ext and middle name...
  2. chryo

    XSL: Dynamically create id's?

    flumpy is right: here is an XSL document that will do your translation: <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?> <xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;> <xsl:template match=&quot;childElement&quot;> <input...
  3. chryo

    Why XML? Why not databases?

    I have to agree that while in certain areas XML and databases &quot;compete&quot;, they are really different tools offering different features. Here are areas where XML has the advantage: 1) irregular data structure: take your average XHTML page (or HTML -- the idea is the same, just don't...
  4. chryo

    Dynamic Array

    Thanks to those who broadened my horizons! I did not know about this behavior. :D Notice that the local variables window shows an uninitialized string? Also, as soon as you ReDim, this changes. This suggests there IS a way to find this out (but I don't know it yet). There are a couple of...
  5. chryo

    Dynamic Array

    Have you already looked at the LBound and UBound functions? You can easily create a loop like this: Dim idx as Long For idx = LBound(my) to UBound(my) ' ... Next

Part and Inventory Search

Back
Top