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: Trusts
  • Content: Threads
  • Order by date
  1. 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 -...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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?)...
  9. 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...
  10. 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 =...
  11. Trusts

    php cake passwords

    Hi, I am taking over a web site built on PHPCake, and the goal is to get it off cake. I can reproduce all functionality simply by going through the processes a user and the admin would take. I have the database and all the data. The one thing I need to do is to decrypt the passwords. The owner...
  12. Trusts

    Force dropdown select to open or stay open

    Hi, I have a client with a crazy request. Is there a way to force open a dropdown? This would/should occur from an event, most suitability the onclick event of the dropdown itself. For example, a select has three items. A person clicks on the first. This onclick event spawns some process, I...
  13. Trusts

    SMPT instead of WebServer?

    Hi, I program, but am a dunce with servers and such. Anyway, my client has a website that sends out email when someone places an order. A certain number of emails are bounced back. The ISP says it's because we are just using the web server and should be using a SMPT server. Here is some of the...
  14. Trusts

    Full text index for boolean searches?

    Hi all, I have taken over a web site. There is a search feature. You enter a word or phrase, and click search. Let's just consider single words for this. Most words work, and some act peculiar. Here's what happens - You enter a word, ex. people. Click search. The results page comes back and...
  15. Trusts

    Put include(a class) in another class file?

    Hi, I am reworking someone's code. The previous developer makes use of classes. That's fine. I am incorporating an encryption/decryption class I have. It would be useful if some of the other classes could reference and make use of my enc/dec class -within their own class. I suppose to do that...
  16. Trusts

    Placing data on the page where I want it to go

    Hi, In the page load I am running sprocs and getting data back. I want this data to appear in certain parts of the page. My initial thought was to place it inside Divs already in place but then couldn't figure out how to make this work. Is this the way to accomplish this, or is there another...
  17. Trusts

    Where does the dll go?

    Hi, I created a VB.Net app using VS2003. The purpose is to enter some text into the app form and then create a Word document with the text going in the document. In developing this, I referenced the Word 11 library on my computer. And also in the code behind have Imports...
  18. Trusts

    ASP Classic to ASP.Net

    Hi, I am converting an app. There is a lot of inline code in the Classic version. Tables that are filled in the Classic code I can replace with grids. That's OK. What I am mulling over is what to do with conditional code. For example: <%if rsLast10.recordcount > 10 then%><a...
  19. Trusts

    Works in FF and Safari, but not in IE

    Hi all, This is driving me nuts. The following validation and recalc routine works fine in Firefox and Safari. But IE6 and IE7 - nothing happens. I can't even get IE to tell me an error message. I can only get a slight guess that it's because I am using DOM, but I thought IE has the DOM model...
  20. Trusts

    OnSubmit - to send an email before going to the next page.

    HI, I have a form that posts to PayPal to get payment from buyers on the site. I am trying to send an email too - to the merchant at the same time. The form action goes to the Paypal URL, but if I use a onSubmit function, is there a way to get the email sent from javascript code?

Part and Inventory Search

Back
Top