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 Chriss Miller 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: Smapty
  • Content: Threads
  • Order by date
  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

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

    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...
  7. 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...
  8. 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...
  9. 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...
  10. 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?
  11. 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...
  12. 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...
  13. Smapty

    Advancing to next text-field w/arrow keys (accounting 4 empty cells)

    Hi, I found a helpful solution to using arrow keys to move through a grid of text fields.... http://www.tek-tips.com/viewthread.cfm?qid=998764 (last post) But now I need to account for the situation where certain fields are either disabled or non-existant. How would I modify that script to...
  14. Smapty

    Tallying up numbers from a matrix of forum fields.

    Please help me modify this script for adding up the column and row totals from a series of text fields: http://www.tek-tips.com/viewthread.cfm?qid=908637 I've got that working on my own project, with some modification for uneven rows to cols... but how do I get it working when there are gaps...
  15. Smapty

    Any way to set the default view when Access is opened?

    By default the program opens with the database window is tiled. Any way to set this to be full screen?
  16. Smapty

    How do I pull fields with all caps?

    We have a database with FNAME and LNAME field entries. About 10% of the people put thier names in in ALLCAPS. How do I query the db to pull only these records? I'm not sure how to go about setting a criteria to not include names with any lowercase characters.
  17. Smapty

    CFHART: How to insert &quot;blank&quot; data for time-values line-charts?

    How do you account for no data for certain time-increments when crating a line-chart? For example, what if you want to chart the income earned over time, but have certiain days where there are no records at all for that day... but you still want to have show the line as "flat" goind across that...
  18. Smapty

    Controlling padding/margin in CFCHART.

    Using MX7. The padding/margin around my Flash-generater pie-chart is ridiculously large. Taking up as much space as the chart itself. Any way to scale that down?
  19. Smapty

    MX 7 CFFORM validation bug

    I'm pretty sure I've found a bug in MX 7 in the way it generated CFFORM javascript validation. After upgrading from 6.1 all our CFFORM validation stopped working (creditcard, email, SS Numbers). What I've found is that on 6.1 if you had your own JavaScript function defined in the...
  20. Smapty

    How do I select the DatePart from date field?

    I can't understand why this isn't working... <CFQUERY NAME="GetSessions" DATASOURCE="#sourcename#"> SELECT DatePart(d, start_time) AS DayPart FROM Sessions </CFQUERY>

Part and Inventory Search

Back
Top