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 strongm 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: meeble
  • Order by date
  1. meeble

    I cannot delete a file from the recycle bin

    I have had a file in there for ages and rebooted the computer many times since it was deleted. Every time I try to empty the bin it says: 'cannot delete dc133' as the file is in use by another programme. even though the file is named home.psd and isn't being used at all. Any ideas how to...
  2. meeble

    How do you direct to a page according to what's typed into a form?

    But I want this done in PHP not JavaScript. I assumed it was just a PHP IF ELSE clause on the second page, no?
  3. meeble

    How do you direct to a page according to what's typed into a form?

    Hello, I have a form and when the user types in any of 3 words and presses submit I want them to go to a certain page. If they don't type in any of the three words I want a little box to pop up saying they haven't entered a correct word. How can you do this please? James
  4. meeble

    How do you do a javascript password box?

    Thanks. Not really sure what you mean but I'll keep looking into it. This is just to highlight the functionality of the password system in the testing phase. Eventually the password will be done with PHP and a MySQL database.
  5. meeble

    How do you do a javascript password box?

    Hello, I have a box and when the user enters a password and presses submit I want them to go to a page. I can do this for one password but I have 30 passwords and I want the user to be able to enter any of these and be taken to the same page. So I guess I need an array or something but I...
  6. meeble

    How do you click on a graphic and change the page?

    Hello. I have a graphic on a page. I want to use onClick so that when you click it the page changes to another page. How do you do this please? James
  7. meeble

    Image swaps from one frame to another

    Hello. I have a site with two frames. I have a graphic in the top frame and one in the borrom. I want to roll over the graphic in the top frame and have the one in the bottom frame change. How do you do this? The top frame is called 'top' and the bottom one is called 'centre'. Thanks James
  8. meeble

    Validating telephone numbers

    I use this function to validate the telephone number in a form box. How do I amend it so it allows spaces as well as valid numbers? Cheers James function checknumber(){ var x=document.myFormName.Telephone_Home.value var anum=/(^\d+$)|(^\d+\.\d+$)/ if (anum.test(x)) testresult=true else{...
  9. meeble

    Simple Javascript confirm question

    When you do a JavaScript confirm you get the two buttons 'ok' and 'cancel'. Can you change these to say something else? Regards, James
  10. meeble

    Activating a function from a link

    The form tag is <form action="applynow1a.php" method="post" name="theform" id="theform">
  11. meeble

    Activating a function from a link

    Hello. This doesn't work. I have <script> function checkSubmit(){ var checked; checked = document.forms[0].box.checked; if (checked == true){ url = 'appwin.php#man' winMap =...
  12. meeble

    Activating a function from a link

    I have a JavaScript function. How do I activate this function by clicking on a text link IF a particular check box in a form is checked? If it is NOT checked then the link does nothing. Cheers James
  13. meeble

    How do you refresh main page from pop up?

    I have a page - when you click a link on it, a pop up opens. If the user closes the pop up by clicking on the X in the top right hand corner, can you make this refresh the main window the pop up came from? Cheers James
  14. meeble

    formchecking with check boxes

    Funny enough it works when I change the functions round
  15. meeble

    formchecking with check boxes

    This works on it's own but I need to do several functions in the onSubmit: I have: onsubmit="return (checkban() && checkSubmit() && checkFunction());" Is this syntax wrong? It does the first two functions but ignores the last one. Thanks James
  16. meeble

    How do you open a window without the blue bar at the top?

    How do you open a window without the blue bar at the top that has the maximise/minimise icons? Cheers James
  17. meeble

    How do you refresh a page from a pop up?

    None at all I'm afraid... Still the same error message
  18. meeble

    Hod you you call 2 functions in one onSubmit

    I thought this was right: onsubmit="return checkban(); return(checkSubmit())" but it just does the first one. Thanks James
  19. meeble

    formchecking with check boxes

    Hello, I have done this and put onsubmit="return(checkCheckboxes())" in the form tag but even if I check a box it still says I must check at least one box. What is wrong? Thanks James
  20. meeble

    How do you refresh a page from a pop up?

    I tried: function refreshPage() { self.reload(); } in the main window and <a href="javascript: void(0)" onclick="opener.refreshPage()"> in the popup link but this just brings up the JavaScipt error: "Object doesn't support this property or method" What is wrong? Cheers James

Part and Inventory Search

Back
Top