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

  1. mike8675

    Add a new node for TreeData.xml

    I'm trying to insert / add a new node into an XML file and I can't seem to figure out the correct scripting (using either vbscript or javascript). Below is a sample of the XML file and I have the area I'm trying to insert a node into with red font. <WebData ID="T0" Desc="Standard Reports"...
  2. mike8675

    quick question: image toolbar

    Two ways to do this: 1st) <META HTTP-EQUIV=&quot;imagetoolbar&quot; CONTENT=&quot;no&quot;> or 2nd) <img src=&quot;my_pic.gif&quot; GALLERYIMG=&quot;no&quot;> First disables all image toolbars on a page and the second one will disable a specific image.
  3. mike8675

    Opening .htm files, can you help?

    Is your htm file going to be on the cd, or somewhere on the users hard drive? If the htm file is also on the cd, then the following should work for you. You could make a file named autorun.inf for your cd and include the following in the file: [autorun] open=wscript.exe start.vbs When you...
  4. mike8675

    Opening .htm files, can you help?

    Are you looking for something like this? If not, be a little more specific. This script will open your htm page and run an exe file (or any file for that matter). <html> <head> <script language='vbscript'> function open_files dim my_shell, my_path, htm_page, exe_file...
  5. mike8675

    Object Required Error

    Try using set: set menuObj = &quot;Link&quot; & menuID set bkgrnd = &quot;Head&quot; & menuID and set menuObj2 = &quot;Link&quot; & menuID2 set bkgrnd2 = &quot;Head&quot; & menuID2
  6. mike8675

    Onclick and href

    If it has to be an onClick then use something like: <html> <head> <script language=&quot;vbscript&quot;> function click_function location.href=&quot;http://yahoo.com&quot; end function </script> </head> <body> <img src=&quot;../images/rt.jpg&quot; onClick='click_function'> </body> </html>
  7. mike8675

    Using IIS for ASP

    Try this: open IIS Services, right click on the default website (or your website in the left menu) and select properties. Click on the property tab labeled &quot;ISAPI Filters&quot; and see if ASP is in there. If it isn't, add it. Click on ADD and then Browse. You're looking for ASP.dll...

Part and Inventory Search

Back
Top