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

    object library not registered

    I think you compile the project and create the setup and then install the setup in other machine. So you will get object libary of the control.
  2. sethu27

    MSIE: XSL + javascript

    hi, The possible reasons for viewing the output View the xml applied with xsl directly in IE browser, if you are able to view the output, then bug in the script only, if not, upgrade IE to IE6 or install the two msxml sdks.
  3. sethu27

    How to create xml file using JavaScript

    hi, Use FileSystemobject to create the XML file.
  4. sethu27

    How to convert svg

    hi, What I understood from your posting is that you want to display a SVG page in browser(Am I right or wrong). if am I right then add the svg file into the embed tag.
  5. sethu27

    XML Feed

    hi, Whether you have stored XSL stylesheet in the remote server?
  6. sethu27

    what's wrong with this XML

    hi to everybody, First understand the what is XML. XML is a Well structured document. I am answering to the first thread mentioning "what's wrong with the xml file". In XML file, 1. All the attributes should be enclosed either in double quotes or single quotes. 2. All the...
  7. sethu27

    String Manipulation

    hi, what sfvb written is correct. But it does not works in VBA. Whether print command is works in VBA?
  8. sethu27

    xsl:for-each... help needed

    hi, It works. I forget to add elements Name and category to the values. Sorry for that one.
  9. sethu27

    Copying Application folder to another location

    hi, The for objects, you have to use set keyword, if you fail to do so, vb raise the error.
  10. sethu27

    xsl:for-each... help needed

    hi, <?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;/&quot;> <xsl:apply-templates/> </xsl:template> <xsl:template...
  11. sethu27

    FindWindow when caption isn't constant

    hi huskerdon, The code for finding window even it's captions is changing. Private Declare Function FindWindow Lib &quot;user32&quot; Alias &quot;FindWindowA&quot; (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Declare Function SetForegroundWindow Lib...
  12. sethu27

    Icons for Download

    hi, Search the web.
  13. sethu27

    XSL Header

    hi Jason, I have given the suggestions for your problem in the forum, heading is &quot;creating a single webpage from multiple xml files&quot;, have a look at it. I confirming that your problem is in Internet explorer 5.0, IE 5.0 does not support the...
  14. sethu27

    Creating a single webpage from multiple xml files

    hi Jason, The possible suggestions are, 1. Misuse of Element or Attribute. You have used LINK in the template and in the xsl:for-each loop, whether LINK is an element or attribute(if it is an attribute use @LINK). 2. Incorrect XPath. Instead of <xsl:template...
  15. sethu27

    Send Key Question??

    hi, In vb you can download a webpage using various ocx or activex controls. I not sure about of using sendkeys, for copying the text from the web page.
  16. sethu27

    How to load a macro whenever microsoft word is opened.

    hi, You create the Autoexec module and then add the desired functions. which will works whenever the word start up
  17. sethu27

    How to load a macro whenever microsoft word is opened.

    hi, You craete the Autoexec module and then add the desired functions. which will works whenever the word start up
  18. sethu27

    pop up more than one image

    hi, For simple way, create two html pages of which one contains only one image(say 1.htm), other page will contain multiple images(say 2.htm). Provide 2.htm to the arrow mark.
  19. sethu27

    XSL request uri

    hi, The code for extracting the querystring from the url of the page is <xsl:template match=&quot;//p&quot;> <script language=&quot;javascript&quot;> <![CDATA[ function urls() { // this is temporary url or take it from the // url is by var str=window.location...
  20. sethu27

    formatting numbers and splitting decimal into integer and decimal

    hi, for integer part use xsl:number, for decimal part, find the lenght of the string and place the decimal places in a required position.

Part and Inventory Search

Back
Top