Re: Generating Thumbnails of file contents

2011-09-21 Thread Raymond Camden
Wouldn't a thumbnail of an Excel sheet be pretty useless? It would just be super tiny bits of text in rows. A powerpoint I could see though - like the first slide. On Tue, Sep 20, 2011 at 10:17 PM, Azadi Saryev azadi.sar...@gmail.com wrote: Convert those to PDFs and generate thumbnails? On

Re: Generating Thumbnails of file contents

2011-09-21 Thread Raymond Camden
Btw - you can use cfpresentation to convert ppt to html. You could then use cfdocument to make a pdf from it and get the thumbnail. It won't be zippy, but it would get the job done. On Wed, Sep 21, 2011 at 6:00 AM, Raymond Camden raymondcam...@gmail.com wrote: Wouldn't a thumbnail of an Excel

strict comma separated list

2011-09-21 Thread Akos Fortagh
hi there, just wondering if someone could help me out on this. 1. I need to make sure a user enters a simple but strict comma separated list in a text box, looking out for duplicate commas like item1, item2,,item3 Also make sure there's no apostrophes entered etc so the list must be like

Re: strict comma separated list

2011-09-21 Thread Raymond Camden
I can think of two ways to check for empty items. First, CF9 added the ability to notice them when converting them to an array. This isn't the default, so if you compare, you can note the difference. cfset a = 1,2,,4 cfif arrayLen(listToArray(a)) neq arrayLen(listToArray(a,,,true)) You

Re: Coldfuion 9 and ORM

2011-09-21 Thread Tom Small
Hi Jonah Thanks for your reply ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: strict comma separated list

2011-09-21 Thread Akos Fortagh
Thank you Raymond, all helped a lot, much appreciated ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Cloud Print

2011-09-21 Thread Eron Cohen
I am wondering if anyone has successfully used Google Cloud Print for remote application printing. I am starting to explore this and would love to know if it works reliably. Even better - if anyone knows of a custom tag or sample code that would be really helpful too. I want to be able to

XML parse

2011-09-21 Thread Torrent Girl
Hi all I tried to parse the XML from the following feed as I normally do and kept getting error messages (not defined) on everything I tried. http://feeds.jobs2web.com/feeds/view?siteId=246feedId=682 Here are a few snippets that I tried: cfset xmldoc =

Re: XML parse

2011-09-21 Thread Jonathan Ingellis
Jobs is capitalized in the XML. This works: cfset myxmldoc = XmlParse( http://feeds.jobs2web.com/feeds/view?siteId=246feedId=682;) cfset title = XmlSearch(myxmldoc, /Jobs/job/title) cfdump var=#title# On Wed, Sep 21, 2011 at 9:02 AM, Torrent Girl moniqueb...@gmail.com wrote: Hi all I

Re: XML parse

2011-09-21 Thread Russ Michaels
are you sure that CF is actually getting the XML ? try grabbing it with CFHTTP first instead just to make sure. On Wed, Sep 21, 2011 at 2:02 PM, Torrent Girl moniqueb...@gmail.com wrote: Hi all I tried to parse the XML from the following feed as I normally do and kept getting error

SMS Apps

2011-09-21 Thread Bryan Stevenson
Hey All, I'm heading into my first SMS app and it is going to follow a simple question and response format... For example... Q: What is your first name? A: Bryan Q: Thanks, now what is your last name? A: Stevenson and so on What I don't know is how CF keeps all that together as a

Re: SMS Apps

2011-09-21 Thread Russ Michaels
everytime you send and receive a message you get a messageID, this will identify a thread and message number. give it try and it should all make sense once you see it in action :-) On Wed, Sep 21, 2011 at 4:56 PM, Bryan Stevenson br...@electricedgesystems.com wrote: Hey All, I'm heading

Re: SMS Apps

2011-09-21 Thread Bryan Stevenson
Thanks Russnice and simple explanationI like those! ;-) Cheers On Wed, 2011-09-21 at 17:28 +0100, Russ Michaels wrote: everytime you send and receive a message you get a messageID, this will identify a thread and message number. give it try and it should all make sense once you

NEW CF9 Install on win server 2008

2011-09-21 Thread Terry Troxel
I am in the CFAdmin data services and am trying to add my first datasource (Access). After putting in the path to the database and submitting, I get an error: Unable to update the NT registry. Variable DRIVERPATH is undefined. I have no idea where to proceed from here. Terry Troxel

Re: NEW CF9 Install on win server 2008

2011-09-21 Thread John M Bliss
:-) http://lmgtfy.com/?q=%22Variable+DRIVERPATH+is+undefined%22 :-) On Wed, Sep 21, 2011 at 12:51 PM, Terry Troxel terry.tro...@gmail.comwrote: I am in the CFAdmin data services and am trying to add my first datasource (Access). After putting in the path to the database and submitting,

Help Desk System

2011-09-21 Thread Trevor Orr
Just wondering if anyone knows of a ColdFusion help desk system, either free or paid is fine. I just need something simple that I can start with and customize to the client's needs. ~| Order the Adobe Coldfusion Anthology

RE: NEW CF9 Install on win server 2008

2011-09-21 Thread Mark A. Kruger
Terry, http://www.coldfusionmuse.com/index.cfm/2010/12/31/Access.on.64bit.ColdFusio n takes a little effort - sorry. -Mark Mark Kruger - CFG CF Webtools www.cfwebtools.com www.coldfusionmuse.com O: 402.408.3733 x105 E: mkru...@cfwebtools.com Skype: markakruger -Original Message-

Re: Help Desk System

2011-09-21 Thread Scott Stewart
Ray camden has something called lighthouse, I think...check riaforge, http://www.riaforge.com On Sep 21, 2011 2:19 PM, Trevor Orr tre...@summitprojects.com wrote: Just wondering if anyone knows of a ColdFusion help desk system, either free or paid is fine. I just need something simple that I

Re: NEW CF9 Install on win server 2008

2011-09-21 Thread Scott Stewart
Is it 64 bit? If it is you wont be using access..not that its a bad thing :) On Sep 21, 2011 1:51 PM, Terry Troxel terry.tro...@gmail.com wrote: I am in the CFAdmin data services and am trying to add my first datasource (Access). After putting in the path to the database and submitting, I

Re: strict comma separated list

2011-09-21 Thread Leigh
Each of these lists will go in a DB field for that particular user Is this a legacy application? Because storing lists is usually a bad idea all around. ~| Order the Adobe Coldfusion Anthology now!

Re: strict comma separated list

2011-09-21 Thread Michael Grant
+1 million. It may seem like a good idea at the time, but it isn't. On Wed, Sep 21, 2011 at 2:55 PM, Leigh cfsearch...@yahoo.com wrote: Each of these lists will go in a DB field for that particular user Is this a legacy application? Because storing lists is usually a bad idea all around.

Graphical Tree Image Output

2011-09-21 Thread Justin Scott
Good afternoon, one of the projects I'm working on has a need to generate graphical output in a tree-like format, such as a family tree or organizational chart (e.g. a box with a name with a line branching out to subordinate elements). Further, this will be output as part of a PDF document, so

Re: Help Desk System

2011-09-21 Thread Raymond Camden
It's more meant as an internal bug tracking system. Typically a help desk is a more public facing system. But feel free to use Lighthouse. ;) On Wed, Sep 21, 2011 at 1:38 PM, Scott Stewart webmas...@sstwebworks.com wrote: Ray camden has something called lighthouse, I think...check riaforge,

Re: Help Desk System

2011-09-21 Thread .jonah
There is also http://projecttracker.riaforge.org/ - it's a Basecamp Clone. Might be another starting point. On 9/21/11 11:19 AM, Trevor Orr wrote: Just wondering if anyone knows of a ColdFusion help desk system, either free or paid is fine. I just need something simple that I can start with

Re: Help Desk System

2011-09-21 Thread Matthew Williams
And a darn good clone at that, with SVN integration as well. -- Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog twitter.com/ophbalance ~| Order the Adobe Coldfusion Anthology now!

Re: Help Desk System

2011-09-21 Thread Greg Luce
+1 for Project Tracker On Wed, Sep 21, 2011 at 3:35 PM, Matthew Williams mai...@geodesicgrafx.com wrote: And a darn good clone at that, with SVN integration as well. -- Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog twitter.com/ophbalance

RE: Graphical Tree Image Output

2011-09-21 Thread Robert Harrison
CFTREE http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_t_10.html Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great

Re: Help Desk System

2011-09-21 Thread Brian Polackoff
Not cf, but does everything you will need and more. A touch pricy. Trackit by numera software is awesome. Thanks, Brian On Sep 21, 2011, at 2:19 PM, Trevor Orr tre...@summitprojects.com wrote: Just wondering if anyone knows of a ColdFusion help desk system, either free or paid is fine.

Re: Graphical Tree Image Output

2011-09-21 Thread Justin Scott
CFTREE Hi Robert, thanks for the reply. Unfortunately CFTREE is a form control. I need to generate a static image in the format of an organizational chart or family tree for inclusion in a document so that will not work in this situation. -Justin Scott

Re: Graphical Tree Image Output

2011-09-21 Thread Josh Nathanson
Well...you could use html/css to output divs as the boxes/lines in the chart, then use cfdocument to generate the pdf. No need for an image in that case. -- Josh On Wed, Sep 21, 2011 at 2:13 PM, Justin Scott leviat...@darktech.orgwrote: CFTREE Hi Robert, thanks for the reply.

Re: Help Desk System

2011-09-21 Thread Russ Michaels
If you are looking for an actual support helpdesk as per your post rather than a project/bug tracking system that other shave suggested the only CF helpdesk I was aware of was cfticket, which seems to have vanished. www.kayako.com is the best helpdesk solution out there, but there are various

Re: Graphical Tree Image Output

2011-09-21 Thread Justin Scott
Well...you could use html/css to output divs as the boxes /lines in the chart, then use cfdocument to generate the pdf.  No need for an image in that case. Indeed, though I am trying to avoid that route if at all possible. If there is a library which specializes in generating those kinds of

Re: Help Desk System

2011-09-21 Thread Paul Kukiel
This is the only one I kn ow of. It's quite old. I used to work with the author: Yet Another helpdesk: http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailloc=en_usextid=1003843 Regards, Paul http://blog.kukiel.net On Thu, Sep 22, 2011 at 4:19 AM, Trevor Orr

Re: Graphical Tree Image Output

2011-09-21 Thread .jonah
I'd look at some of the Java ones: http://www.google.com/search?q=java+graph+drawing+library On 9/21/11 3:29 PM, Justin Scott wrote: Well...you could use html/css to output divs as the boxes /lines in the chart, then use cfdocument to generate the pdf. No need for an image in that case.

Re: Graphical Tree Image Output

2011-09-21 Thread Michael Grant
Does cfchart do hierarchical diagrams by any chance? Here's what you want in a different language. You could initiate this from CF. http://www.phpclasses.org/package/4254-PHP-Render-graphical-diagrams-of-hierarchical-trees.html On Wed, Sep 21, 2011 at 6:12 PM, Josh Nathanson

Re: Graphical Tree Image Output

2011-09-21 Thread Justin Scott
I'd look at some of the Java ones: http://www.google.com/search?q=java+graph+drawing+library Interesting, I did a lot of searching but never did I think to go with graph as a term. This opens up some options that might work. Thanks! -Justin

Re: Graphical Tree Image Output

2011-09-21 Thread Justin Scott
Does cfchart do hierarchical diagrams by any chance? Not from what I could see, but if it does I'd love for someone to prove me wrong. Here's what you want in a different language. You could initiate this from CF. That's right along the lines I'm looking for. If I can't make one of the

CF8 Instances hanging every 3-4 days or so.

2011-09-21 Thread Richard Steele
We're starting to get CF8 Enterprise hung instances every 3=4 days or so at different times. For no apparent reason, requests don't complete on two load balanced instances. Restarting both instances does not help. The instances become hung again very quickly. Restarting IIS for these instances

Re: CF8 Instances hanging every 3-4 days or so.

2011-09-21 Thread Justin Scott
We're starting to get CF8 Enterprise hung instances every 3=4 days or so at different times. Hi Rick, I'd be looking at the memory usage. A tool such as FusionReactor or SeeFusion can help track down problems pretty quickly. In many cases, this kind of behavior points to improperly scoped