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. Avator

    How to change date of file within VxD?

    Hello! How can I change date of file within VxD? I can't find something like Win32 API function FileDateTime() in DDK :( Can anybody help me? I'll be very appreciative for any help. Avator
  2. Avator

    Use ISO-8859-2 charset

    Hi. I use different encodings and i have not any problems with it. I type special characters direct in XML (or XSL) by editor that is support desired encoding (they not look like &amp;#1234; , not entity). I use corresponding headers in XML and XSL. But I think that you must add <xsl:output...
  3. Avator

    Loops in XML

    Yes, I use .../1999/XSL/Transform namespace. Sorry for belated answer.
  4. Avator

    Loops in XML

    hi dsetzer You need this XSL code: (you must change paths of course) <xsl:template match=&quot;/&quot;> <select> <xsl:call-template name=&quot;option&quot;> <xsl:with-param name=&quot;val&quot; select=&quot;number(//min)&quot;/> </xsl:call-template> </select> </xsl:template>...
  5. Avator

    &lt;br/&gt; in XML

    hi elihermans You may try to include output directive to your XSL stylesheet <xsl:output method=&quot;text&quot;/> See also disable-output-escaping attribute of xsl:text You may get desired result by combine this things, it depends of XML tools you are use. Hope it will be helpful. Best...
  6. Avator

    XSL ?

    hi auskid You may try to type this XSL fragment: ... <td> <input type=&quot;text&quot;> <xsl:attribute name=&quot;name&quot;> <xsl:value-of select=&quot;@id&quot;/> </xsl:attribute> </input> </td> ... You can see also caf's question &quot;Binding XSL&quot;. The same thing...
  7. Avator

    xml data and xsl in one file.

    hi, In general you can put xml data to xsl file, because xsl-file is first of all xml-file :)) But what you will do with this xsl file?! For xsl transform, for example, you will must to use xml fake like &quot;<doc></doc>&quot; or something else. This way is contrary to xml technology, but...
  8. Avator

    Referencing parent element in XSL style sheet

    Hello Dave. Try this code: ...test=&quot;parent::LIST/@T=...&quot;... I don't run it on MSXML but on Sablotron it works perfectly. Hope it will relieve. Avator
  9. Avator

    XSL Help

    hello, Gibble. I guess that you must type: <xsl:template match=&quot;category&quot;> <div class=&quot;CategoryName&quot;> <xsl:for-each select=&quot;//forums/forum&quot;> <xsl:value-of select=&quot;reference/@id&quot;/> </xsl:for-each> </div>...
  10. Avator

    XSL nesting

    hi show your xsl-file please.
  11. Avator

    Data Base connection

    Hello, asha. IMHO under win32 there are two ways to do this (without stored procs): use ADO (latest versions, that's support XML output) for access to database or use MS SQL Server 2000 (which is not even released ;)) There are some ways (pretty complex) to solve problems like it (most of them...
  12. Avator

    XSL Filter

    hi silver It depends of what type of XSL processor you use. Try this: <xsl:for-each select=&quot;CATALOG/BOOKS[Author='Schiller' or Author='Goethe']&quot;>
  13. Avator

    Binding XML

    hello, caf What kind of XSL processor do you use? Did you tried to type XSL fragments like this: <select id=&quot;cboOptions&quot;> <xsl:for-each select=&quot;members/data&quot;> <option value=&quot;{id}&quot;><xsl:value-of select=&quot;description&quot;/></option></xsl:for-each> </select> or...

Part and Inventory Search

Back
Top