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

  1. adamthenewbie

    Problems with SQL statement

    I have been looking around and you would think this would work. SELECT c.id, c.eventMonthDay, c.eventYear, c.title, c.location, c.ordering FROM calendar c WHERE c.id NOT IN (SELECT m.calendar_id FROM onlineReg_meet_info m) ORDER BY c.ordering ASC But it doesn't. Any help?
  2. adamthenewbie

    Problems with SQL statement

    ok I have this SQL statement SELECT c.title FROM calendar c, onlineReg_meet_info m WHERE c.id = m.calendar_id This displays all the calendar title that are both in onlineReg_meet_info and calendar Basically I am trying to write a SQL statment to do the opposite. I want to display the...
  3. adamthenewbie

    Selecting a Radio Button by code?

    got it document.forms[0].branch[3].checked = true; Nevermind
  4. adamthenewbie

    Selecting a Radio Button by code?

    I have these 4 radio buttons <input type="radio" name="branch" value="nb" checked> NB <input type="radio" name="branch" value="ns"> NS <input type="radio" name="branch" value="none"> Non Member <input type="radio" name="branch" id = "branch" value="other"> <input class = "textbox2"...
  5. adamthenewbie

    Transfer from Select Box to Other Select Box

    I am trying to alter this script http://www.quirksmode.org/js/transfer.html But am having lots of problems as I am not all that great with javascript. What I am trying to do is: 1) When you move an option from the left side to the right side the option in the left side stays (Now it gets...

Part and Inventory Search

Back
Top