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

  1. RexJacobus

    My script does nothing

    That did the trick, thanks
  2. RexJacobus

    My script does nothing

    Here is the code in its entirety. thank you, -------------------- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Play Palago - Palago Blog Upload</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css">...
  3. RexJacobus

    My script does nothing

    Sorry, I had left it out from when I was testing something else. But it still doesn't work. The following function is immediately before function tpopup(s) ___________________ function checkForm2(form2) { // alert("Checking form2"); if( validateForm2( form2 ) ) {...
  4. RexJacobus

    My script does nothing

    I'm not strong with javascript. Most of the code I'm using is cut and paste from another form on the website that I didn't write. I can't figure out why nothing is happening. It's probably something obvious. I'm simply trying to put a quick check on the email field to make sure it's not blank...
  5. RexJacobus

    Update query not working

    No it was imported not linked.
  6. RexJacobus

    Update query not working

    I tried clicking the run exclamation point from within the query and I also tried closing the query and then right clicking on it and choosing Open. In the end I gave up, exported into XL, sorted by item code, then cut and pasted the 12 different code prefixes. Then I imported the table back...
  7. RexJacobus

    Update query not working

    Thanks, Duane. When I create a query and use SELECT tbl2009Sales.* FROM tbl2009Sales WHERE tbl2009Sales.Item Like "PN*"; It selects exactly the fields I want. When I turn my query into a select query it selects exactly the fields I want. When I created a query using your code and changed the...
  8. RexJacobus

    Update query not working

    I have a table full of item numbers. I try to condense the table using the following query SQL UPDATE tbl2009Sales SET tbl2009Sales.Item = "PN" WHERE (((tbl2009Sales.Item) Like "PN*")); This is the SQL generated by the design wizard but it looks like good code to me. It should, in theory take...
  9. RexJacobus

    Multiple popups focus issue

    Hello, I have a page with several puzzles. I want the user to be able to click on a puzzle and the solution will come up in a popup. That part works fine. My problem is that if the user clicks on a second solution the first popup goes behind the main screen. I want the popups to remain on...
  10. RexJacobus

    Problems with watermark

    Here is the code (which was primarily generated from someone else's website). In Mozilla this creates a watermark in the location I want but at 100% opacity so you can't see through it. In IE, the opacity is how I want it but the watermark is aligned left. Any ideas, I'm not Mr. Javascript...
  11. RexJacobus

    Gettin no Unix error msg

    Hello, I need to write a simple cron that deletes things older than thirty days. I have created a file del_list.csh and placed it in the cron folder. The entire file is this: _______ #!/bin/csh # #set echo find <path>/toplist –name “*.html” –mtime +30 –exec rm –rf {} \; ------- If I type...
  12. RexJacobus

    Point me to a site please

    Hi, I am looking for a site where I might find overlap between strategy gamers and java programmers. I am trying to drum up some interest for a new bot at the Tantrix website and am looking for a good place to brown-nose potential volunteers. http://www.tantrix.com/english/TantrixBattle.html...
  13. RexJacobus

    Calling perl from javascript

    I have changed the line as you instructed but I still am not getting any of the alerts/ confirms. Does that mean I still have syntax errors? <script language=/"JavaScript/"> <!-- function SendNews(f,n) { var decision =confirm("Are you sure you want to overwrite?"); if (decision ==...
  14. RexJacobus

    Calling perl from javascript

    No, I haven't yet. Thanks for the pointers, I am not used to javascript at all. Here is what it looks with my latest changes In the <head> function SendNews(f,n) { var decision =confirm("Are you sure you want to overwrite?"); if (decision == true) { document.location =...
  15. RexJacobus

    Calling perl from javascript

    Please help. I'm trying to write a form that can overwrite some files on the server. In the head of my HTML form: function SendNews(f,n) { var decision =confirm("Are you sure you want to overwrite.")) if decision == true { {document.location =...
  16. RexJacobus

    Stop enter from submitting form

    I am creating a lost password form. The user puts in what he thinks his player name might be and the page goes and retrieves anything similar and asks the player if any of them looks right and if so choose the radio button that is your player name and click the submit button. The form then...
  17. RexJacobus

    Problem restoring MySQL db

    I've unzipped and tried mysql -u root -p <PWD> test < bkup.txt I still got no results and no error msgs. I've also tried it where the destination database is completely empty. I get the same results as when I try to backup the existing testing db. Jim
  18. RexJacobus

    Problem restoring MySQL db

    I am trying to restore the nightly backup to a test db. I log into the Unix shell and navigate to the backup directory. I type in mysql -u root -p <PWD> testDB < bkup.txt.gz. I get no error msgs just the "mySQL Ver 14.7 ... (and then all the mysql command-line options)" When I look in testDB...
  19. RexJacobus

    www missing

    If anyone else has this problem it was fixed by switching the UseCanonical setting in the httpd.conf jim
  20. RexJacobus

    www missing

    If someone types www.myURL.com/Match/index.html the correct page loads and the url says http://www.myURL.com/Match/index.html FINE. If someone types www.myURL.com/Match/ the correct page loads and the url says http://www.myURL.com/Match/ FINE. But if someone leaves off the last slash and...

Part and Inventory Search

Back
Top