CF7 ENT = CF8, CFReport Font size issues

2008-09-05 Thread Marcus Raphelt
Hi there, yesterday, I updated a customer's CF7ENT / Linux Server to CF8 Trial and ran into several issues regarding CFReport: They generate pretty complex Flash Paper reports based on cfr files. When generated via CF7, all reports look as they're supposed to (all font sizes and margins are

RE: Javascript in CFC

2008-09-05 Thread Andy Matthews
Hrm... You're right. That doesn't make any sense though. -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2008 10:12 PM To: CF-Talk Subject: Re: Javascript in CFC - Original Message - From: Andy Matthews [EMAIL PROTECTED] That's

Setting a default value

2008-09-05 Thread Les Mizzell
In the scenerio below, how would I set a default value - 99 maybe - for form.group_sort_#gpIDX# - if the form field was left blank? cfloop index=idx list=#FORM.GROUPid# cfquery name=update UPDATE MyTable SET group_sort = #evaluate(form.group_sort_#gpIDX#)# where link_group =

Re: Setting a default value

2008-09-05 Thread Brad Wood
- Original Message - From: Les Mizzell [EMAIL PROTECTED] In the scenerio below, how would I set a default value - 99 maybe - for form.group_sort_#gpIDX# - if the form field was left blank? I'm sure there are many ways, but this should work. Also, don't forget to secure those

Re: Setting a default value

2008-09-05 Thread Aaron Rouse
You could do this, it assumes the form element would always be passed but might be blank. If the form element may not get passed then you could do a cfparam but that would not handle if it passed and blank. Also I assumed #gpIDX# was really supposed to be #idx# cfloop index=idx

Re: Setting a default value

2008-09-05 Thread Aaron Rouse
Erf, I left off some pound signs on the where clause where link_group = '#Form[thisGROUP_#idx#]#' On Fri, Sep 5, 2008 at 10:32 AM, Aaron Rouse [EMAIL PROTECTED] wrote: You could do this, it assumes the form element would always be passed but might be blank. If the form element may not get

Query of Queries error

2008-09-05 Thread vidya yegnaraman
I have a runtime query of a query error as below. java.lang.String cannot be cast to java.util.Date But the output format is correct and is in date. This application was developed in coldfusion 6.1 and sqlserver2000. But now we get this error when it was migrated to coldfusion 8 and sql server

Form slowness inexplicable

2008-09-05 Thread Rick Root
Okay... I've had ONE user complain about the slowness of this form: http://www.it.dev.duke.edu/public/formtest.html The problem they're having is that when the resize the window or scroll or move it, it's slow. Very slow. I don't have this problem. My coworker experiences the problem to a

RE: Form slowness inexplicable

2008-09-05 Thread Dave Watts
Okay... I've had ONE user complain about the slowness of this form: http://www.it.dev.duke.edu/public/formtest.html The problem they're having is that when the resize the window or scroll or move it, it's slow. Very slow. I don't have this problem. My coworker experiences the

Re: fusebox vs model glue

2008-09-05 Thread Richard White
hi, apologies for the delayed thanks! - but thanks very much there are some excellent points here and really made me understand. seeing as we are doing everything to understand OO and change our applications into OO it sounds like we should stick with it - it is really helping us understand

Re: Form slowness inexplicable

2008-09-05 Thread Phillip M. Vector
If 1 user out of however many ever used the form (since it's a edu site, I suppose it's ALLOT) complains about something that hasn't changed... It's a PEBCAK error or a ID-Ten-T Error. Dave Watts wrote: Okay... I've had ONE user complain about the slowness of this form:

Re: Form slowness inexplicable

2008-09-05 Thread Ian Skinner
Rick Root wrote: Anyone got any ideas on this? I read a review of Chrome a couple of days ago that discussed a general 'Flash' problem with current browsers. The reviewer discussed how greedy Flash player could get with client resources, particularly CPU.

making functions global in model glue

2008-09-05 Thread Richard White
hi i am making my first model glue application and just want to know if i have got the following right: i want to make my reusable functions (e.g. cflib functions arrayconcat etc...) global to all of my cfc's so that i can access them at any time. am i right in thinking that i would create a

RE: Form slowness inexplicable

2008-09-05 Thread Dave Watts
I read a review of Chrome a couple of days ago that discussed a general 'Flash' problem with current browsers. The reviewer discussed how greedy Flash player could get with client resources, particularly CPU. His form isn't using Flash, it's using DHTML. Dave Watts, CTO, Fig Leaf

Re: Form slowness inexplicable

2008-09-05 Thread Rick Root
On Fri, Sep 5, 2008 at 1:07 PM, Ian Skinner [EMAIL PROTECTED] wrote: Rick Root wrote: Anyone got any ideas on this? I read a review of Chrome a couple of days ago that discussed a general 'Flash' problem with current browsers. The reviewer discussed how greedy Flash player could get with

Re: Form slowness inexplicable

2008-09-05 Thread Rick Root
On Fri, Sep 5, 2008 at 1:06 PM, Phillip M. Vector [EMAIL PROTECTED] wrote: If 1 user out of however many ever used the form (since it's a edu site, I suppose it's ALLOT) complains about something that hasn't changed... It's a PEBCAK error or a ID-Ten-T Error. One user has complained .. out of

Re: Form slowness inexplicable

2008-09-05 Thread Brad Wood
Is this user local? Your only real hope is to take a look at their computer. Have them clear their cache and restart. Take a look at what is running in the background. How much memory is installed? Available? What toolbars are installed? Take the test page, and start removing pieces of the

Re: Form slowness inexplicable

2008-09-05 Thread Rick Root
On Fri, Sep 5, 2008 at 1:30 PM, Brad Wood [EMAIL PROTECTED] wrote: Is this user local? Your only real hope is to take a look at their computer. Yup, already did that. Have them clear their cache and restart. Take a look at what is running in the background. How much memory is installed?

form collection

2008-09-05 Thread Chad Gray
Hello, I am using argumentCollection=form to dump all of the form fields into a CFC. I would like to add to the form collection one more variable called Alias. I tried this but the variable FORM.Alias does not appear to actually be in the collection. cfset FORM.Alias =

Re: making functions global in model glue

2008-09-05 Thread s. isaac dealey
Joe added a helpers scope in MG 3 to make it easier to work with UDF libraries. Ray posted a blog about this a little while ago: http://www.coldfusionjedi.com/index.cfm/2008/5/2/ModelGlue-3--The-New-Frakin-Awesomeness Of course, I have no idea which version you're using. :) But that gives you

multiple select drop down box and oracle dates

2008-09-05 Thread James Blaha
Hi Folks, I ran into an issue with a multiple select drop down box that has a list of dates i.e. mm/dd/. On my action page I have a cfquery that I would like to pass the list of dates to like: Mydates IN ('08/01/2008','08/02/2008',…) In oracle I need to do something like:

Re: form collection

2008-09-05 Thread Charlie Griefer
On Fri, Sep 5, 2008 at 11:20 AM, Chad Gray [EMAIL PROTECTED] wrote: Hello, I am using argumentCollection=form to dump all of the form fields into a CFC. I would like to add to the form collection one more variable called Alias. I tried this but the variable FORM.Alias does not appear to

RE: form collection

2008-09-05 Thread Chad Gray
I need to take what they type into the form Name field and remove illegal characters and then that becomes the Alias variable I need to insert into the database. I suppose I could run my MakeAlias function inside of the savePage function. I will give that a try. -Original Message-

RE: form collection

2008-09-05 Thread Chad Gray
Hmm never mind. I had an error in my code that made me think Alias was not being added to the collection. It appears to work now that I found my real bug. Chad -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2008 2:37 PM To: CF-Talk

Re: making functions global in model glue

2008-09-05 Thread Richard White
thanks very much, i am actually using model glue 2, yet we are only just starting to use it - would you recommend that we start leaning model glue 3 - is there many changes and also benefits? thanks for your help richard Joe added a helpers scope in MG 3 to make it easier to work with UDF

Re: making functions global in model glue

2008-09-05 Thread Raymond Camden
MG3 is amazing... but it's also an alpha, and a changing product. I launched CFLib with it, but that's because CFLib is my person little site, and not some multi-billion dollar business. If MG3 had crashed and burned, no one would be hurt. On Fri, Sep 5, 2008 at 1:42 PM, Richard White [EMAIL

FTP GETFILE Read Timed Out Error

2008-09-05 Thread patrick buch
Hi everyone, I'm getting a timed out error when using cfftp action=GETFILE. I've tried and done the following: 1). Set IIS website and FTP site timeout time to 900 seconds 2). Used the attribute of timeout=900 in code shown below 3). Added ?timeout='900' in the URL 4). Tried adding timeout

Re: I need some help figuring this out...

2008-09-05 Thread Chris Jordan
*bump*... anyone? Thoughts? Thanks, Chris On Fri, Aug 29, 2008 at 3:17 PM, Chris Jordan [EMAIL PROTECTED]wrote: Hi folks, I need some help figuring something out, and after searching the web a bit on my own, and posting this question to my local CFUG, I thought I'd pose the problem to

Re: I need some help figuring this out...

2008-09-05 Thread Justin Scott
*bump*... anyone? Thoughts? Based on the workflow, it sounds as though it might almost be easier to have a stamp made for the appropriate signatures and have whoever prints/faxes them stamp the signature before they're faxed out. I'll disclaim that I don't know how many users or documents

Re: making functions global in model glue

2008-09-05 Thread Richard White
thanks Ray, this is a good tip - we are building something that needs to be released commercially next month so i suppose we should get it up and running in MG2 and then when MG3 is officially released then we can make the migration thanks for the advice. in the meantime do you think my

Re: Form slowness inexplicable

2008-09-05 Thread Josh Nathanson
No slowness for me, IE6/WinXP/3-yr-old laptop. -- Josh - Original Message - From: Rick Root [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, September 05, 2008 9:54 AM Subject: Form slowness inexplicable Okay... I've had ONE user complain about the slowness of

Hi everyone

2008-09-05 Thread Philip Kaplan
Hi everyone, After what seems like 100 years reading the archives, I just joined the mailing list and wanted to introduce myself. My name is Philip Kaplan and I've been a ColdFusion programmer since around 1996. I'm sure others discovered CF this way -- IIS hadn't yet been invented so I was

RE: I need some help figuring this out...

2008-09-05 Thread Mark Kruger
Chris, Since you are working with faxes you are not really working with a PDF. In reallity you are working with a TIFF file or JPG that is embedded in the PDF - one tiff or jpg for each page of the PDF. If you know the page you need to work on you can do the following: Extract the page as an

cfc scenario help

2008-09-05 Thread Richard White
Hi, we have been doing alot of work on understanding OO development using CFC's and model glue. we have one issue that we don't quite understand and hope someone can help to simplify the problem: we have 2 objects: projects, and tests we have ensured that each of these objects have a DAO cfc

Re: making functions global in model glue

2008-09-05 Thread Raymond Camden
Sure, I've done that before. I'll have a util.cfc that others CFCs use for misc crap. On Fri, Sep 5, 2008 at 4:35 PM, Richard White [EMAIL PROTECTED] wrote: thanks Ray, this is a good tip - we are building something that needs to be released commercially next month so i suppose we should get

Re: Hi everyone

2008-09-05 Thread Justin Scott
After what seems like 100 years reading the archives, I just joined the mailing list and wanted to introduce myself. I thought that name looked familiar. Welcome to the list! -- Justin Scott, http://www.tlson.com/ ~|

Re: Query of Queries error

2008-09-05 Thread Richard White
i had a similar problem and turned out to be that one of the values in the order by clause was empty - cf seems to mistake it for a empty string and therefore was producing the same error you are experiencing... check all values in the problem column to ensure there are no empty values i also

Re: I need some help figuring this out...

2008-09-05 Thread Judah McAuley
Mark is right about the fax really being an image (most likely a TIFF). I've had to do some rather ugly things like this before and what I did was use ImageMagick to convert the pdf to a tiff, place the second image atop it in the correct spot, then merge the layers and save it out as a another

Re: making functions global in model glue

2008-09-05 Thread Richard White
excellent, thanks for your help ray richard Sure, I've done that before. I'll have a util.cfc that others CFCs use for misc crap. -- === Raymond Camden, VP of Software Dev, Broadchoice Email : [EMAIL PROTECTED] Blog :

Re: Hi everyone

2008-09-05 Thread Casey Dougall
On Fri, Sep 5, 2008 at 5:42 PM, Philip Kaplan [EMAIL PROTECTED] wrote: Hi everyone, After what seems like 100 years reading the archives, I just joined the mailing list and wanted to introduce myself. My name is Philip Kaplan and I've been a ColdFusion programmer since around 1996. I'm

Re: Hi everyone

2008-09-05 Thread Brad Wood
all_together_in_a_sing_song_voiceHi Philip/all_together_in_a_sing_song_voice ~Brad - Original Message - From: Philip Kaplan [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, September 05, 2008 4:42 PM Subject: Hi everyone Hi everyone, After what seems like

Re: Hi everyone

2008-09-05 Thread Philip Kaplan
you eq funny :) On Fri, Sep 5, 2008 at 3:35 PM, Brad Wood [EMAIL PROTECTED] wrote: all_together_in_a_sing_song_voiceHi Philip/all_together_in_a_sing_song_voice ~Brad - Original Message - From: Philip Kaplan [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent:

RE: FTP GETFILE Read Timed Out Error

2008-09-05 Thread Rick Faircloth
Hi, Patrick... I've been working with cfftp recently and noticed it's been throwing an error (hanging and timing out) on a particular file. I tried downloading it with a third-party ftp program (FileZilla) just to make sure the file wasn't corrupted. It wasn't, so I'm not sure what the problem

Re: FTP GETFILE Read Timed Out Error

2008-09-05 Thread Brad Wood
This may seem really silly to ask, but how much time is elapsing before the timeout error? 900 seconds should be giving you 15 minutes. What happens when you try to download it with a regular FTP utility? If you check the server's network usage during the download, does it show incoming

Re: FTP GETFILE Read Timed Out Error

2008-09-05 Thread Josh Nathanson
Maybe it took longer than 900 seconds? How big is the file? -- Josh - Original Message - From: patrick buch [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, September 05, 2008 2:00 PM Subject: FTP GETFILE Read Timed Out Error Hi everyone, I'm getting a timed

Re: Hi everyone

2008-09-05 Thread Gerald Guido
all_together_in_a_sing_song_voice H Philip /all_together_in_a_sing_song_voice Philip Hi everyone... I am a...aa... Dammit!! I am a.ColdFusion Programmer. /Philip Philip There I said it!! Are you HAPPY NOW/Philip Philip Look!! I TRIED to give it up. Lord knows I tried. /Phili Philip

Re: Hi everyone

2008-09-05 Thread Phillip M. Vector
God... That's what I get for reading messages from most recent to oldest. I was like, WTF?!?!? Gerald Guido wrote: all_together_in_a_sing_song_voice H Philip /all_together_in_a_sing_song_voice Philip Hi everyone... I am a...aa... Dammit!! I am a.ColdFusion Programmer. /Philip

Trying to use cfexecute to run batch file...

2008-09-05 Thread Rick Faircloth
I'm trying to use cfexecute to run this bath file content: ftp -s:getfiles.txt The batch file reads its commands from getfiles.txt, which has the following code: open datalink.interealty.com [username] [password] cd /DataLinkOutput/SAV/SAV_119201 prompt mget *.* bye I can run the batch