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

    cfhttp - RSS Feed way too big, any way to limit what I download?

    I want to display an RSS feed on my site, from Investor's Business Daily, but the thing is so darn long that its total size, 250K, is slowing down my site. Is there anyway in CFHTTP to only download a portion of the filecontent? To just stop at 50K or so? If that's not possible, is there...
  2. Smapty

    Create Windows Shortcuts

    This is for an internal workflow process I'm developing. Is there any way for Coldfusion to generate Windows "Shortcut" files? Perhaps using CFFILE? Also, its important to also set the "comments" field of the shortcut, so that I'll be able to later sort the list of shortcuts other than by name.
  3. Smapty

    Open a local folder using hyperlnk

    I tried that, but no luck. Nothing happens when you click the link.
  4. Smapty

    Open a local folder using hyperlnk

    <a href="c:\">root</a> That will only work when running a page off the desktop. I need to find a way to open up folders on the local machine runnning ColdFusion. Right now we have all these folders for jobs that are by unique interger id. I want to build a simple page that also lists other...
  5. Smapty

    Set the Folder attribute for &quot;comments&quot; or &quot;title&quot; column

    I have a problem that I set up a series of folder housing various website content by thier unique "job number". This has made things much more organized but my client wants to still tell what folder belongs to whcih client based on the folder name. There is the comments and title attributes...
  6. Smapty

    Set the Folder attribute for &quot;comments&quot; or &quot;title&quot; column

    Unfortunately, neither of these do the trick. The comments field of even shared folders isn't displayed in the "comments" column. Anybody know of a program that augments windows explorer?
  7. Smapty

    Set the Folder attribute for &quot;comments&quot; or &quot;title&quot; column

    I have a problem that I set up a series of folder housing various website content by thier unique "job number". This has made things much more organized but my client wants to still tell what folder belongs to whcih client based on the folder name. There is the comments and title attributes...
  8. Smapty

    IE6 converting URL encoded characters. Messing up links.

    Hello, This problem only seems to be with IE6. We have a javasctipt function that linked divs around imagemaps links. The problem we are seeing is with one client who is using SES urls and product identifiers that have commas and slashes in them. The links in the image maps work because they...
  9. Smapty

    Any way to get the url location of a remote script?

    I think I may have gotten it with this tutorial... http://feather.elektrum.org/book/src.html var scripts = document.getElementsByTagName('script'); var index = scripts.length - 1; var myScript = scripts[index].src; myScript = myScript.replace(/test\.js(\?.*)?$/,''); document.write(myScript);
  10. Smapty

    Any way to get the url location of a remote script?

    Thanks Dan. Could you give a little pointer on where to start with that code? The syntax used there is a bit more advanced than I'm used to. I've messed around with it but can't seem to extract the "src" value of the script tag. All I can get is "undefined" as a value. I'm assuming you are...
  11. Smapty

    Any way to get the url location of a remote script?

    Is there anyway for a remotely called javascript file to use the href location of the file itself? All I've been able to do is get the location of the calling html page, not where the script itself is located. I have a situation where differant clients are all calling the same script but at...
  12. Smapty

    #URL.firstname# shows CGI variables

    <cfoutput>#cgi.HTTP_HOST##cgi.SCRIPT_NAME#?#cgi.QUERY_STRING#</cfoutput> ...ought to give you the whole url.
  13. Smapty

    How to Generate PDF thumbnail in ColdFusion 7

    I don't have CF8 running for my production environment so I don't have use of the new cfpdf tag. But has anyone created a way to make thumbnails out of pdf's for version CF7? My goal is to have create a pdf upload form that will take care of making a thumbnail out of it automatically. Right...
  14. Smapty

    How do I &quot;sum&quot; text with numbers?

    SELECT ("insert into Mytable (PERSON_ORG_RELATION_ID,PERSON_ORG_ID_FROM,PERSON_ORG_ID_TO,PERSON_ORG_RELATION_TYPE_ID) values (next value for seq_PERSON_ORG_RELATION_ID,0001,100,"+[My Data].Relation+");") AS String1 FROM [My Data]; That query works fine as long as the bolded part is a text or...
  15. Smapty

    Any way to print a footer/header on each page?

    What about the option of using a watermark of some sort?
  16. Smapty

    Any way to print a footer/header on each page?

    Probably not possible, but is these any method using CSS that will print a standard footer or header message on each page of a print-out?
  17. Smapty

    Parsing Style-Sheet with Regular Expressions

    Need help creating a regular expression that will go through a style-sheet and pick out all the classes, ids, and native html elements. Also need to pick out the class+selector combinations, i.e. ".myTable tr". I figure the easiest way may be to grab everything expect for stuff in comments, or...
  18. Smapty

    What regular expression will match specific HTML tags?

    Ok, but Were not sure the order of the attributes of these tags. Also, the action type vary's widely across the website.
  19. Smapty

    What regular expression will match specific HTML tags?

    I need a reliable regular expression that will match a specific html tag but will ignore the tag if it has a specific attribute/property in place. For example, I need to turn this: <ul> <li><html:link action="give.up"></li> <li><html:link action="give.up"></li> <li><html:link...

Part and Inventory Search

Back
Top