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 Mike Lewis 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: *

  • Users: jd323
  • Order by date
  1. jd323

    Rounding data in XSL to 2 decimal places

    or you can use the function <xsl:variable name="number" select="sum(PersProd/ProductNode/SectionPart/UsageItem/Amount/TaxAmount/Value)" /> <xsl:value-of select="format-number($number,'#.##')"/>
  2. jd323

    Sorting variables

    My XSL tranform takes the data below, and generates xml output, which is effectively marked-up 'text'. The text-wrapping mark-up in the output is abbreviated to <aaa>. For simplicity within my transform, I have defined these marked-up data as variables. I effectively want simulate the concat( ...
  3. jd323

    Word Print Problem

    It could also be that one has a different default paper size in to the other. If the documents are in .doc format, the paper size (File>>Page Setup) is stored in the document, and "shouldn't" be a problem, although it's worth checking (and I don't know if 2002/2003 formats are identical)...
  4. jd323

    Email notification when an email comes in a mailbox

    If your mail server supports it you can forward the headers (or the entire email) on to several further addresses. Really need more detail about the mail server and the mail client you are using. Generally, once a mail has been read the mail server stores that information and so it will appear...
  5. jd323

    Learning MySQL & Oracle

    Where is the best place to pick up database management skills? I have a good knowledge of XML, VB, VBA and MSOffice (mostly Excel & Access). I have a project which requires me to learn C++, so I will be fluent in that by the end of the year. I would prefer to learn whilst doing a job which is...
  6. jd323

    Ordering subsets within a nodeset

    Thankyou. The use of the substring fuction to clip the comma off the end is just what I was after. :)
  7. jd323

    Ordering subsets within a nodeset

    I have a source document with a structure which is basically like this: <data> <fruits> <orange>orangeinfo</orange> <apple>appleinfo</apple> <apple>appleinfo</apple> <orange>orangeinfo</orange> <pear>pearinfo</pear> </fruits> </data> * The document order is not necessarily the same...

Part and Inventory Search

Back
Top