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

  1. Trusts

    using variable in if statement, testing if window is open

    Good points. What I presented here is just a piece of much larger code. The variables presenting windows are placed global in the live version. But the same problem exists. This example I've provided here represents the problem. google_window in this example is declared outside the function...
  2. Trusts

    using variable in if statement, testing if window is open

    Hi, I have hit a wall with how to use variable names inside certain statements (such a "if"). There are a few others I have issues with but to keep it simple, this shows the problem. Here are two nearly identical pages. Each attempts to open Google in a new window. A function -...
  3. Trusts

    Test if window is open

    Thanks Vacunita. I am keeping a new window referenced as such: a_height=screen.availHeight; a_width=screen.availWidth; var window1=window.open('1.html','Nav','location=no, menubar=no, resizable=no, scrollbars=no, status=no, titlebar=no, toolbar=no, width=a_width, height=a_height'); So in this...
  4. Trusts

    Test if window is open

    Hi, I have a web app in which Javascript opens a number of windows. Which ones get opened depend on user actions so I can't be sure which are opened. When the user causes a window to open, I first want to check if that window IS already open. Is there a way to do this? I can't find anything...
  5. Trusts

    menu does not show in IE, yikes!

    Dan, I fixed it on the client's site - not on the sample that you are looking at. Thanks!
  6. Trusts

    menu does not show in IE, yikes!

    BillyRayPreachersSon and johnwm: My client confirmed - it's an Artisteer template. It validated on CSS and XHTML, but was missing a modern DOCTYPE. Once I put that in - it worked in IE! Thanks for the help. KB
  7. Trusts

    menu does not show in IE, yikes!

    hi all, I set up an example of the problem, the URL to view is: http://www.testthishere.com/phone/members In Firefox it looks fine - the menu appears. in IE, it doesn't appear. Actually it sort of appears - if you move the mouse around the white space words from the menu will appear, and...
  8. Trusts

    custom tab in Ribbon Word 2007

    HI all, I fixed it and here is what the deal is: You take your Word 2007 file, or template as my case had been. Rename it with a zip extension. Then open the zip file - you get a number of directories and files - what actually shows up depends on what was in the file in the first place. For my...
  9. Trusts

    custom tab in Ribbon Word 2007

    xhelp - it did not work. Tony - I didn't create it. It was given to me to change. I don't know how it got created. I've been playing around with how to make a new one but haven't gotten that far. Why MS would make this so much harder than before is beyond me.
  10. Trusts

    custom tab in Ribbon Word 2007

    Hi, I have been given a Word 2007 template (dotm) to update. When opened, or when a document is opened based on it, there is an extra tab on the ribbon, let's call it "Mystuff" Clicking Mystuff changes the ribbon to display various custom items that lead to various functionality. I don't need...
  11. Trusts

    FTP not working

    Hi, The following routine will work on some servers, not on others. When it does not work, it gets as far as where it tried to connect, and then nothing happens. The echo numbers are for seeing how far the programming goes. When it does not work, it echoes "2" and then just keeps spinning its...
  12. Trusts

    div inside table - problem with Safari?

    Hi All, First, yes I know tables should go, but I am handed someone else's work and a limited budget. So the issue I am having is that I put a div in a td - and the div is in the css file and doing what it should - in IE and Firefox. Safari on the other hand seems to ignore the styling provided...
  13. Trusts

    clearing form post values on a page refresh

    Hi, I'm trying to find a way to clear the values being included with a form's post. The form posts back to its own page. I need to keep it this way due to other needs of the client. Also it is post, not get. That has to stay too. Within the php code, certain messages are echoed to the...
  14. Trusts

    navigate to url on a click

    I have both, Flash 8 on a PC, and CS3 on a Mac.
  15. Trusts

    navigate to url on a click

    Hi, Kinda of a newbie. How can I set up an action such that when an image is clicked on, a new window opens set to a url specified in the click event. I read that it can't be done on an image but instead to convert the image to a button (although it will still appear as the graphic?)...
  16. Trusts

    Table name is same as SQL keyword

    Thanks! Worked great!
  17. Trusts

    Table name is same as SQL keyword

    Hi, I've been handed a project with tables already in place. I am using PHP to construct and run SQL statements. One of the tables is named Values. This creates a problem when running this SQL statement within it being constructed in PHP: select gref.Field1, gref.Field2, othertable.Field3...
  18. Trusts

    Where clause used on alias field in Union Query

    Another option is to send the number in OpenArgs, and then apply it as a filter. Couldn't get that to work either.
  19. Trusts

    Where clause used on alias field in Union Query

    Hi, I have a report that is built on a Union Query: SELECT Contributors.FirstName, Contributors.LastName, Donations.DonationDate, Donations.DonationAmount as "Amount", Donations.Loan, Donations.DonationReported, "Donation" AS Type FROM Contributors INNER JOIN Donations ON Contributors.ID =...
  20. Trusts

    php cake passwords

    Sure, 8d788385431273d11e8b43bb78f3aa41 is teacher and 7d8bc5f1a8d3787d06ef11c97d4655df is taylor

Part and Inventory Search

Back
Top