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 TouchToneTommy 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: lbrooks
  • Content: Threads
  • Order by date
  1. lbrooks

    XSLT calling external js function

    Within an XSLT file, I am calling an external js function. I have the following within my XSLT file: <script> SetSelectIndex(this.form,'paramprocess', '{ParameterType}'); SetSelectIndex(this.form,'paramapproval', '{Any/ApprovalType}'); SetSelectIndex(this.form,'paramtype'...
  2. lbrooks

    InsertBefore method

    Overall: When I attempt to use the insertBefore method I get an error "Insert position node must be a child of the node to insert under." Below I walk through my code explaining what I am doing. Any help would be grealy appreciated. //this is just to show that I am working with two...
  3. lbrooks

    External JS file submitting form

    I have the following written: With an XSLT file: I calling a function to submit the form: <form method="post" name="newrecipe"> ...other code <input type="button" onClick="javascript:CreateNewRecipe(this.form,document.getElementById('productname').value...
  4. lbrooks

    Concatenating String in Javascript

    I have the following string: myfunction = "'insertbb('" + myvalue + "')'" sNewRecipe = "<table>tr><td class='stySubItem1'>input type='button' onClick=" + myfunction + " value='Browse'/> </td></tr></table>" folderTree.innerHTML = sNewRecipe With the above I get a syntax error If I remove the...
  5. lbrooks

    XSLT Namespaces

    What would cause a XML schema definition to prevent how elements display. I have a XSLT file and a XML file that point to a stadnard schema for a given industry. If I remove the schema information from the XML, my information displays just fine within a browser. But if I include the schema...
  6. lbrooks

    XSLT Question

    I have a XSLT that looks like the following: <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html"/> <xsl:template match="//MainHeader/MasterElement"> <xsl:apply-templates select="MainElement"/>...
  7. lbrooks

    Is there a way to embeded a ASP file with XSLT?

    Is there a way to embeded a ASP file with XSLT? I would like to create one XSLT and emded functional components. For example I have multiple forms pages created in ASP. For each node with my XML I specifiy the name of a ASP form. So a node may point to "contactform.asp". I would like to be...
  8. lbrooks

    Using the XSLT &lt;xsl:Include&gt; element

    I have an XSLT and XML document. I have transformed the XSLT and XML document into HTML on the server using ASP. I am using the <xsl:include> element within my XSLT. I am trying to figure out if the include is executed before the data is sent to the client? The reason for my question is...
  9. lbrooks

    SQL to Excel

    I have the following query: SELECT incidentCategory.* INTO incidentCategory IN 'C:\Exported.xls' From incidentCategory SQL Server claims to have executed the query with no errors. But the spreadsheet is never created.
  10. lbrooks

    Accessing memory on Windows 2000

    I am dynamically creating web pages on my server. I want to know how much space is being utilizing per page when people access my server. I am using windows 2000.
  11. lbrooks

    Is it possible to call a vba macro from visual basic?

    I have created an application that imports an excel file to create individual word documents for each entry and then is suppose to save each word document as a PDF. The problem is that the Adobe Acrobat PDFMaker function for Visual Basic seems to be unstable, but the VBA function works. So I...
  12. lbrooks

    converting word to pdf using visual basic 6.0

    I need to know how to convert MS word file to pdf using visual basic 6.0. I have installed Adobe acrobat 5.0 and I am trying to use the API to convert the word document to PDF. Any suggestions?

Part and Inventory Search

Back
Top