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. forumposters

    Slow Join Query - Can it be improved?

    Here's my SQL: SELECT * FROM A, B WHERE A.address IN ('X') OR B.address IN ('X') ORDER BY B.address, A.address,B.[date], A.[date] Is there anything that sticks out here that could be improved so that this query takes less time to run?
  2. forumposters

    border color of select menu in IE

    How do you set the border color of a select menu in IE?
  3. forumposters

    Want to show padding, margin, and borders while trying to debug

    If i want to see where all the borders are on all my divs, tds, etc I can put this line in my css: *{ border: 1px; border-style: solid; } But, I'd like to see margins and padding as well... Is this possible?
  4. forumposters

    using java in a cfc to parse emails

    Here's some java code that does almost exactly what I want to do. http://www.rgagnon.com/javadetails/java-0458.html However, I want to use this java code in a cfc I'm clueless how to put this java code into a cfc. Any pointers or tips to help me get started would be very much appreciated.
  5. forumposters

    Backlinks from Articles in Article Directories

    Do search engines like Google, Yahoo, and MSN count the links back to your site? Has anyone found that submitting many articles has alone significantly improved their postition in the SERPS for the anchor text that they use with their backlinks?
  6. forumposters

    Hosting Images Remotely - Does it Affect SEO?

    If we host our images remotely, will we hurt our SEO in anyway?
  7. forumposters

    XML Sitemap Generation Script

    Has anyone coded a script that will follow all the links on your site and create an xml sitemap from those links? Would you care to share any of your code or point me in the right direction here?
  8. forumposters

    Online Tools to Format Code

    I find myself writting some pretty sloppy code from time to time and it would be nice if there was a good tool online to apply uniform indentation, spacing, etc to my css and html code automatically. Anyone know of a particular good tool for this?
  9. forumposters

    Forcing Footer to Position at the Bottom of Page

    How is this done? I understand it's difficult to code the CSS to work in most of the popular browsers. I could just enter the appropriate number of <br /> tags to push the footer down to the bottom on pages where the height is not all taken up by content. But, there's got to be a better way...
  10. forumposters

    Image Gallery Page Looks Funny Before Images Load

    Is there something that can be done to make an image gallery looks better before images are loaded? Would you suggest a placeholder of some sort or is there another way to go about this using CSS?
  11. forumposters

    Coldfusion Storefront / Shopping Cart

    I'm going to be creating a storefront and shopping cart in Coldfusion. Can anyone point me to an up to date and robust tutorial for how to code a shopping cart complete with a checkout process in Coldfusion? Or, any tips or advice you have would be much appreciated. We'll be using CF MX 7 on...
  12. forumposters

    jrun closed connection

    I'm getting this error: Server Error The server encountered an internal error and was unable to complete your request. JRun closed connection. Anyone know what causes this error? What can be done to fix it? Right now, restarting Coldfusion or rebooting the server seems to fix it temporarily.
  13. forumposters

    Get Directions - Google Map Link HTML

    Can someone please post instrucions on how to link to Google maps? That is, what do you append in the query string to view a map of an address with an from address input text box prompt?
  14. forumposters

    Coldfusion Stats Application

    I'd like to gather information from visitors to my site. What are the options out there both free and paid for Coldfusion? Has anyone written their own code that is open source and they wouldn't mind sharing?
  15. forumposters

    Redundant Logic?

    The following query seems to work, but I'm not sure it's the best way to do this. Is there a better way to write this SQL statement? Is there another query that does the same thing, but is shorter and is better form? SELECT j.jobid FROM Job j JOIN Image i ON j.jobid = i.jobid...
  16. forumposters

    Select only if a tag is matched in every category.

    I have the following select query: SELECT DISTINCT Job.JobID, Job.DateAdded FROM Job, ImageTag, Image, Tag, TagCat WHERE TagCat.TagCatID = Tag.TagCatID AND Tag.TagID = ImageTag.TagID AND ImageTag.JobID = Image.ImageID AND Image.JobID = Job.JobID AND ImageTag.TagID IN (#TagIDList#) ORDER BY...
  17. forumposters

    cfcs and udfs

    As a new coldfusion developer, I'm not sure when to make a function a udf or a cfc. Also, I'm not sure how to convert one to the other. Can anyone describe when to make it a udf or a cfc and how to convert one to the other?
  18. forumposters

    Opening a thickbox with cflocation

    I want to use cflocation to open up a page in a thickbox window. Without using cflocation, I can just do it like this: <a href="thickboxwindow.cfm" class="thickbox"> and it will open up that page in a thickbox. Is it possible to redirect a user to a thickbox with cflocation, though? How could...
  19. forumposters

    Where to put user defined functions

    Where do you keep your user defined functions? Do put them all in one file under a 'lib' folder and then cfinclude that file? Or, do you store them in a component and invoke that component? What is the best practice?
  20. forumposters

    Convert Javascript to Jquery

    Can anyone help me convert this line of code from Javascript to Jquery? $(fileObj.name).innerHTML += '<a href="javascript:;" class="floatLeft" onclick="removeImage(\''+fileObj.name+'\')">delete</a><br />';

Part and Inventory Search

Back
Top