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 TouchToneTommy 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
  • Content: Threads
  • 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?

    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
  3. 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...
  4. 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
  5. 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
  6. 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{...
  7. 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
  8. 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
  9. 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
  10. 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
  11. 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
  12. meeble

    How do you refresh a page from a pop up?

    Hello. I have a page that opens a pop up when you click on a link. In this pop up, is another link, that, when clicked, closes the pop up and refreshes the main page. Is this possible? Cheers James
  13. meeble

    CGI encoding

    When you have a form and pass data through, the data gets encoded in the URL. I am doing a members bit on my site.... I have set up the user account jtfielding666666.I got help with the perl script which is not my forte! Am I right in saying that the bit after the SID is jtfielding666666...
  14. meeble

    formchecking with check boxes

    I have 10 check boxes on my form. I want the user to have to tick at LEAST one of them. How do I do this please?
  15. meeble

    Compulsory form fields

    I have three fields in my form: Home telephone Work telephone Mobile telephone I want to make it compulsory that a user fills in at least any ONE of these boxes. How do you do this? Cheers James
  16. meeble

    Complex SQL query probably involving joins

    I have the following tables. table Order OrderSequenceNumber Order Number ContactID table OrderDetail OrderSequenceNumber sProductDescription QuantityOrdered table Person ContactID Name Address Line 1 Address Line 2 Address Line 3 Address Line 4 Postal Code Where more than one table...
  17. meeble

    Problem with report based on query

    I have a report based on an SQL query. It doesn't give the results I want. Here's the query. SELECT ContactID, Name, Salutation, Title, Company, [Address Line 1], [Address Line 2], [Address Line 3], [Address Line 4], [Postal Code] from Person where Person.ContactID=Order.InvoiceContactID...
  18. meeble

    All spreadsheets keep hiding first few columns

    I have a load of excel spreadsheets. They used to open fine. Now, whenever I open any of the them they always hide the first few columns and I have to unhide them. Any idea why? I am using a mac powerbook and office '98. Cheers James
  19. meeble

    Can you crack this code? (Part 2)

    Recently I posted a JavaScript password script from a friend's site that was cracked by people here. I have found this one on the net and modified it. I think it is much harder to crack? I have put up a test page here - http://www.energywrap.co.uk/code/ Gold star for anyone that cracks it...
  20. meeble

    Simple JavaScript password

    If I have a text box and a submit button and when someone enters the password into the box, if it is correct, it takes them to a page with that password as the page name (.html), is this safe? So, if the password was bob, they would put bob in the box and get taken to bob.html else the page...

Part and Inventory Search

Back
Top