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 IamaSherpa 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. FastJimmy

    Cold Fusion Components

    Have any of you used cfcomponents in CFMX yet? What do you think of them? What have you found to be the best ways to implement them. I'm having a bit of difficulty invoking them with forms. Also, do any of you know about any cf component tutorials or best use documents that have not been listed...
  2. FastJimmy

    login works - how do i logout?

    I use this: #structClear(session)# and clear all of the current sessions at once. Hope this helps! Jimmy
  3. FastJimmy

    Multiple Browser Question

    I was wondering if there was a way to have two different versions of IE installed onto one machine. I need IE 5.5, but I would also like to have IE 4.01 to make sure web sites I create look good on that browser too. If anyone has any suggestions it would be greatly appreciated! Also, an...
  4. FastJimmy

    Netscape Image Misalignment

    Good suggestion but our XML parser (and all I believe) requires all tags without a specified closing tag to have a '/' at the end. This indicates the the tag is standalone. Also, since I made this post I've noticed that if I drag my mouse over the overlapping image (as if to highlight it) the...
  5. FastJimmy

    Netscape Image Misalignment

    After testing I've found this works in Netscape 4.6 just fine. Jimmy
  6. FastJimmy

    Netscape Image Misalignment

    So I'm having this really annoying problem with Netscape and Image Alignment. What I have done is created a table with a single table cell in it. Inside this cell is a form the contains a input type="image". The problem is that this image will not display inside it's cell when loaded...
  7. FastJimmy

    Mass Mail Error

    I tested this new code out and it gave me the exact same error. Anymore ideas anyone? Thanks!! Jimmy
  8. FastJimmy

    Programming Style Question

    I have a question about CF programming in general and the structure of a program. I don't know if it makes any difference but is it better to put all the code for a section of an application on one page? (Meaning, with all the cfifs, queries, visual designs, etc) Or is it better to take a page...
  9. FastJimmy

    Mass Mail Error

    Thanks! I'll try this out and let everyone know how it worked! Jimmy
  10. FastJimmy

    Mass Mail Error

    Hi, I'm having a problem with a script that I wrote that sends out e-mails to everyone who has signed up for our mailing list. (About 20,000 people) The script works like this: An e-mail is written and stored into a database. E-mail is approved to be sent out. E-Mail is sent out. The sending out...
  11. FastJimmy

    Searching Between Two Dates

    Hmm, I am still having the same problem after I tried this method out. Here's the code I am using if it will help anyone out: Figure out yesterday <cfset yesterday = '#dateAdd('y', -1, today)#'> <cfset yesterday = #createODBCDate(yesterday)#> Figure out 7 days from now <cfset week =...
  12. FastJimmy

    Searching Between Two Dates

    Hi, I am creating an small application page in which I need to find birthdays of people in a contact table coming up in the next 7 days. I set the variables yesterday and week using dateAdd and Now(), which both become the respective correct dates. I then do a SQL query to find all contacts that...
  13. FastJimmy

    Problem with Like Operator

    Thanks a lot John and Mike!! Problem solved! I appreciate it! Jimmy
  14. FastJimmy

    Problem with Like Operator

    John, I tried this: Where nameFirst like '%#form.searchValue#%' AND nameLast like '%#form.searchValue#%' And it returned no results. Anyone have anymore ideas? Thanks a lot! Jimmy
  15. FastJimmy

    Problem with Like Operator

    I have a table that I must search for a persons name. I have the fields nameFirst and nameLast in this table. I need to find someway to join the info for those two fields together so I can do a statement such as: where [full name] like '%searchValue%' But sadly, I have no idea how to search...
  16. FastJimmy

    Dynamic Location Selection (Using ID #'s)

    I've had quite a bit of experience with cold fusion, enough to get around in it. I've created forms that update multiple fields in a table. The question I asked about the database yesterday was an important one. This is one that I have been wondering about for awhile and had some free time...
  17. FastJimmy

    Datasource Advice

    Thanks for your advice Kevin!! I have decided, after much thought, to choose the second method. Jimmy
  18. FastJimmy

    Dynamic Location Selection (Using ID #'s)

    I am in the process of creating a program in which addresses are stored. The city, state and country for each address are stored in the database and are defined by a: cityID, stateID and countryID. Right now, the way I do this is to pop open a seperate window then were the address is filled in...
  19. FastJimmy

    Datasource Advice

    Hello, I have a question about datasources and a program that I am creating that I would appreciate a little advice on. This is an application in which about 5 different companies (to start with) will be using. The question is regarding how to use my datasource(s) wisest. I have two choices...
  20. FastJimmy

    Mailing Labels Help

    I was wondering if anyone at all has any experience printing out mailing labels from an HTML page. Basically I have a list of shipping info (name, address, city, state, zip) for a number of different addresses. I would like to format an HTML page with this info on it and print it onto a sheet...

Part and Inventory Search

Back
Top