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 IamaSherpa 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. countryboy

    javascript equivalent of vbscript chr(n)

    Vlad: just what the doctor ordered. Thank you. Chris
  2. countryboy

    JavaScript equivalent of VBScript "chr(n)"

    Hello all! I'm trying to delimit a text string with a non-printable character such as VBScript chr(5). How could I accomplish this in JavaScript? TIA.
  3. countryboy

    Dropdown menu in a form & eval() problem

    The problem is not with the eval() function. You just do not have dynamic access to listboxes on a form. Place the listboxes outside of your <form></form> tags and it will work in IE and Opera, not in NN. Hope this helps.
  4. countryboy

    javascript equivalent of vbscript chr(n)

    Hello all! I'm trying to delimit a text string with a non-printable character such as VBScript chr(5). How could I accomplish this in JavaScript? TIA.
  5. countryboy

    How to add options to select box on the fly

    Gerard, thanx for your reply! After some tweaking, I found the following code to work. First, I remove the one (and only) option: <code>List1.options.remove(0)</code> Then I loop through my array: <code>Dim Record(x, 2) for Count = 0 to x - 1 Set y =...
  6. countryboy

    How to add options to select box on the fly

    The following JScript adds an array of options to a select box (provided the select box is not in a form): <code>for (u=0; u<Count+1; u++) if (u==0) { var oOption=document.createElement(&quot;OPTION&quot;); oSelect.options.add(oOption); oOption.innerText = (tempArray[u]); oOption.value =...

Part and Inventory Search

Back
Top