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 SkipVought 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: mat41
  • Order by date
  1. mat41

    Validate multiple checkboxes ok but fails for one

    Hi there - it never enters the if or the elseif regardless of how many checkboxes are on the page. I have placed alerts there to identify this. I have changed my original code to this which does work. Its probably a bit amateurish thought I would expect: if...
  2. mat41

    Validate multiple checkboxes ok but fails for one

    Hi there - Sorry I missed this post somehow. Thank you for your answer however I am confused what to use in place of [object NodeList] and [object HTMLInputElement] Thanking you
  3. mat41

    Validate multiple checkboxes ok but fails for one

    Hi there JS gurus, please help.... This code works well to validate multiple checkboxes that are all named the same which is what I want. The array of checkboxes is dynamic, sometime there will only be one. In this situation if I check this one checkbox it throws the 'You have not ticked any...
  4. mat41

    Office Conversion Advice

    hi there - I am not sure where to put this post, please advise if there is a better area? We want to create a server side tool that allow users to upload batches of documents (or specify share drives) to convert from Office 2003 (binary) to Office 2010 (XML). Is is possible to create a web...
  5. mat41

    Multi Select to Multi Select Help please

    Hi guys - Excellent the .appendChild works a treat!! Thank you to all three very helpful people, You guys have a fine day where ever you are in the world!!
  6. mat41

    Multi Select to Multi Select Help please

    Hi Guys - After getting this in the SOE, in reference to to Geates 13 Nov 12 11:07 post unfortunately IE 7.0 / 8.0 says 'invalid argument' regarding this line: document.choiceForm.choiceBox.add(option); In reference to Geates 13 Nov 12 10:01 post. When I add the two lines which were...
  7. mat41

    Multi Select to Multi Select Help please

    Hi guys - Thanking you both very much for your time, very much appreciated indeed!
  8. mat41

    Multi Select to Multi Select Help please

    As I said Geates code works very well!! One aspect I am now having trouble with is getting the item to appear back in the left list when removed from the right. Any assistance would be very mush appreciated? Thank you in advance!
  9. mat41

    Multi Select to Multi Select Help please

    Geates - Very nice, thanking you!!!
  10. mat41

    Multi Select to Multi Select Help please

    Hi there This code works very well allowing items to be moved from one multi select area to another onClick. I just cant figure out how to change it to make sure the item that has been moved from the left list to the right is removed from the left list. Any help would be very much...
  11. mat41

    password validation check for letters and numbers

    Wow what a piece of code, nothing short of brilliant. Thank you for your time and expertise. Hijack I think not, all that happened was the great coe was explained. thanks again
  12. mat41

    password validation check for letters and numbers

    Thankyou for your time. For others I ended up going with: if(document.updateForm.tUserPassword.value.length < 8) { alert("Password must contain at least eight characters. NOTE Passwords must be greater than eight characters, contain a number and upper and lower case letters.")...
  13. mat41

    password validation check for letters and numbers

    This function seems to work except for the checking for a string that contains letters and at least one number. please help? function ValidatePW() { var error = ""; var illegalChars = /[\W_]/; // allow only letters and numbers var fld = document.updateForm.tUserPassword if...
  14. mat41

    Show hide table row onclick of radion button

    Cheers Dan you have a fine day...
  15. mat41

    Show hide table row onclick of radion button

    Hello I am using the following function to show / hide a <tr> onclick of a radio button however it does not work in Firefox. Works fine in IE. Please help?? function toggleT(_w,_h) { if (document.all) { if (_h=='s') eval("document.all."+_w+".style.display='block';"); if (_h=='h')...
  16. mat41

    SQL statement help

    I ended up getting this to work: SWITCH ( [Week Days Opened] <= TBL_SLA_Activity.[Number of Days] , 'YES', [Week Days Opened] > TBL_SLA_Activity.[Number of Days] , 'NO', TRUE, 'N/A' ) AS [Has Meet SLA] Thank you so much for your time, very much appriciated!
  17. mat41

    SQL statement help

    correction I should have said: if Days Opened <= SLA Agreement say "Yes" (this is working) if Days Opened > SLA Agreement say "No" (this is working) If SLA Agreement does not have a value say "N/A
  18. mat41

    SQL statement help

    Excellent that did it, thanking you very much. I am now using: IIf(Nz([Days Opened],0)<=Nz([SLA Agreement],0),"Yes","No") AS [Has Meet SLA] One more question if I may? How can I make sure if: if Days Opened >= SLA Agreement say "Yes" (this is working) if Days Opened > SLA Agreement say "No"...
  19. mat41

    SQL statement help

    Having toruble doing this in access 2003: SELECT......., IIf([Days Opened]>[SLA Agreement],"Yes","No") AS [Has Meet SLA] FROM tbleName..... Specifically my issue is with: IIf([Days Opened]>[SLA Agreement],"Yes","No") AS [Has Meet SLA] I am getting an 'out of disk space in temp location...
  20. mat41

    clicking through from record to record on form

    Thank you for your input however this property is set to no Any other ideas?

Part and Inventory Search

Back
Top