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 gkittelson 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: yarsu
  • Order by date
  1. yarsu

    Disabling <A HREF = '' > in VBScript

    Try this ... hope this is wha you are looking for <SCRIPT Language=&quot;VBScript> Sub Flip() 'some code Window.event.returnValue = False end Sub </SCRIPT>
  2. yarsu

    Iterating thru selected values in SELECT

    Try this ... <html> </head> <script language=&quot;vbscript&quot;> Sub disp() Dim i Dim itms For i = 0 to (mulSel.Options.Length-1) if mulSel.Options(i).selected Then itms = itms & _ mulSel.Options(i).value & &quot; - &quot; & _ mulSel.Options(i).Text & vbcrlf Next msgbox itms...
  3. yarsu

    Insert Elements

    I was trying to move the rows in a table with vbscript using InsertBefore() method. While the Javascript version works fine , vbscript throws an error &quot;Invalid Argument&quot;. Since our Intranet uses VBScript mainly, we want to stick with VBS. Have attached sample code. HELP !! <html>...

Part and Inventory Search

Back
Top