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 Wanet Telecoms Ltd 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: GMoyle
  • Content: Threads
  • Order by date
  1. GMoyle

    Finding a variable's type

    I've written some validation routines that take a form field as a parameter. I want to adapt the routines so that they can take either form fields OR strings. I therefore need to be able to test for the parameter's type because if it's a field I'll use ParamName.value to get the value, where...
  2. GMoyle

    Infinite loop checking blank fields with onBlur

    I have a function as follows: function checkComplete(checkField) { alert(checkField.value); if(checkField.value=="") { alert("You have not completed the field"); checkField.focus(); checkField.select(); return false; } else { return true...
  3. GMoyle

    Pasting formulae only

    I want to copy a range of cells in excel but only paste those that contain formulae. Is this possible? Thanks.

Part and Inventory Search

Back
Top