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 dencom 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: slowfish
  • Content: Threads
  • Order by date
  1. slowfish

    email validation

    Hi I have an email field in my form where javascript email validation works fine on submit. I've recently added another email field but some reason the email validation now doesn't work. Any ideas?
  2. slowfish

    CASE and JOINS

    Hi Is it possible to use CASE to work out which table to JOIN? Cheers
  3. slowfish

    this month followed by subsequent months

    What's the easiest way of printing this month followed by all the subsequent months, so showing 12 months in total, i.e. - May 2010 June 2010 etc etc March 2011 April 2011
  4. slowfish

    COUNT WITH MULTIPLE JOINS

    Hi I'm trying to count the total number of workdays for all volunteers that are not "Type 4" volunteers. A volunteer can be multiple types, hence I think why I'm getting a much larger count than expected. SELECT COUNT(taskvolsnew.vol) AS howmany FROM taskvolsnew LEFT JOIN tasks ON...
  5. slowfish

    linked dropdowns

    Hi I know this has been asked many times before but I can't seem to work out a way of doing the following... First dropdown options are yes/no Second dropdown options are yes/no If yes selected from first dropdown, selected value of second dropdown is also "yes" thanks
  6. slowfish

    COUNT number of returned rows

    Hi My query returns all the records of "active" London customers who have ordered within the past year. I also need to know how many customers, but where do I put the COUNT function? SELECT *, MAX(customers_orders.date) AS maxdate, customers.id AS refid, FROM customers LEFT JOIN...
  7. slowfish

    onfocus event to change background colour

    hi very simple but I can't seem to get an onfocus event to work - changing the background colour of a text box. function setStyle(x) { document.getElementById(x).style.background="yellow"; } and then the following in the td tags onfocus="setStyle(this.id) id="iprange" Any help...

Part and Inventory Search

Back
Top