cfxpdf performance issues

2005-11-05 Thread Douglas Knudsen
Anyone out there using easel2's cfxpdf? Yes, we are still on CF6.1, no version 7 until 1q2006 probably, so don't even tease me with CF7 :) We are using it to generate a 5 to 15 page report. Requesting only 2 or 3 of the reports pegs the CPU on our dev machine which is a 2CPU P4 Xeon with 2GB

Re: Want to test our Flex App?

2005-11-05 Thread Douglas Knudsen
Universe Training Technologies has you beat with their patented scientifically altered test results proven Ultra Whole Body Training. lol...geesh, Super Whole Brain Learning? This discovered in Area 51 there? On 11/4/05, Bobby Hartsfield [EMAIL PROTECTED] wrote: 'Super whole brain learning'

Re: cfxpdf performance issues

2005-11-05 Thread jonese
how are you generating? with HTML or using the tags? jonese On 11/5/05, Douglas Knudsen [EMAIL PROTECTED] wrote: Anyone out there using easel2's cfxpdf? Yes, we are still on CF6.1, no version 7 until 1q2006 probably, so don't even tease me with CF7 :) We are using it to generate a 5 to 15

Using SQL Server JDBC Drivers with MX7?

2005-11-05 Thread Pete Ruckelshaus
Is anyone using the Microsoft JDBC drivers for SQL Server with CFMX7? If so, are there any advantages in using the MS JDBC drivers over the ones that ship with MX? Followup question, when setting up an other type of DSN in CF Administrator, what do you use for the JDBC URL setting? I'll assume

RE: Using SQL Server JDBC Drivers with MX7?

2005-11-05 Thread Dawson, Michael
I previously used MS's JDBC for SQL, but went back to CF's implementation. I didn't see much difference in performance by using MS's drivers. There was also the hassle of maintaining yet another third-party item. By going back to CF's drivers, I only have to worry about MACR's updates. If

Re: [SPAM : 8.1] Re: Rumors from Max..

2005-11-05 Thread Matt Robertson
On 11/4/05, Dave Watts [EMAIL PROTECTED] wrote: I don't think the MS Access w/Unicode driver is native. It talks to ADO instead of ODBC. The driver class is com.inzoom.jdbcado.Driver: Curious. So strictly speaking is ADO just the same horse painted over, so to speak? Not familiar with it.

Re: [SPAM : 8.1] Re: Rumors from Max..

2005-11-05 Thread Matt Robertson
never mind. googled ADO and had the answer in 2 shakes. If ADO is an automatically-installed part of a Windows system, I wonder then how the *n*x guys get Access connectivity. -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com

RE: Convert Address to Latitude/Longitude

2005-11-05 Thread Emmet McGovern
That's beautiful. Did you code that just for kicks? -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Friday, November 04, 2005 11:24 PM To: CF-Talk Subject: Re: Convert Address to Latitude/Longitude Troy Montour wrote: I'm trying to get a project finished by

RE: Convert Address to Latitude/Longitude

2005-11-05 Thread Emmet McGovern
This site claims to hack the geocode out of googles API. Interesting considering google's API specifically says it does not provide geocode information. It's also a CF site. I'd be very interested to see the code behind this. http://web.bazily.com:8080/freegeo/ Emmet -Original

RE: Convert Address to Latitude/Longitude

2005-11-05 Thread Bobby Hartsfield
http://www.sustainablegis.com/projects/geocode/flashforms/ Very nice. That is all... ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.362 / Virus Database: 267.12.8/161 - Release Date:

OT: ActiveX Image Control

2005-11-05 Thread Big Mad Kev
Guys, I want to use CFX Image System but I have a requirement from the business where they want to be able to Copy and Image and then Paste it into a object on a web page and then be able to select and area (a set Area lets say 322x322) to have cropped and then have the image saved as a JPEG.

RE: ActiveX Image Control

2005-11-05 Thread Bobby Hartsfield
Haven't done it (or seen it done) via activex. There are plenty of javascript image croppiong interfaces out there though. I seem to recall a nice flash image cropping tool that let you view the image through a local path (meaning you don’t have to upload it first to see it). Sorry I don’t

RE: ActiveX Image Control

2005-11-05 Thread Big Mad Kev
Cheers, Didn't think of Flash so may change my Google Search now and See what I come up with, sorry been a long week Many Thanks -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: 05 November 2005 18:55 To: CF-Talk Subject: RE: ActiveX Image Control Haven't

onSessionStart problem

2005-11-05 Thread Mark Leder
HI All, Can you not invoke cfcs from inside a onSessionStart function inside the application.cfc? Any alternatives such as cfinclude? Thanks, Mark ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble

Re: onSessionStart problem

2005-11-05 Thread Sean Corfield
On 11/5/05, Mark Leder [EMAIL PROTECTED] wrote: Can you not invoke cfcs from inside a onSessionStart function inside the application.cfc? Yes, you can invoke CFCs just fine. What problems are you encountering? -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying

RE: onSessionStart problem

2005-11-05 Thread Snake
You can use all the same tags and functions inside application.cfc that you can use inside any other template, it is not restricted. Russ -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 05 November 2005 19:25 To: CF-Talk Subject: onSessionStart problem HI All,

RE: onSessionStart problem

2005-11-05 Thread Mark Leder
Won't invoke at all. When I use this code in an application.CFM everything works fine. Essentially, I'm sniffing the browser and setting Session vars so that a correct CSS sheet can be presented. Could it have something to do with locking inside the cfc's? Here's the code for the three

Proper use of CASE and maybe CAST in SQL

2005-11-05 Thread Gonzo Rock
SELECT Starts, Rejects, CASE WHEN Starts = 0 THEN 1 ELSE (Starts - Rejects) / Starts END AS Yield FROM History Returns Values like this: Starts - Rej - Yield 0 - 0 - 1 (as expected) 2 - 1 - 0 (should be .5) 12 - 4 - 0 (should be .666) suspect this is about integer math but having a terrible

Re: onSessionStart problem

2005-11-05 Thread Sean Corfield
On 11/5/05, Mark Leder [EMAIL PROTECTED] wrote: Won't invoke at all. What error do you get? -- Sean A Corfield -- http://corfield.org/ Got frameworks? If you're not annoying somebody, you're not really alive. -- Margaret Atwood

RE: onSessionStart problem

2005-11-05 Thread Mark Leder
No errors but session vars which are set in the cfc are not being returned. Mark ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project

RE: onSessionStart problem Post 1 of 3

2005-11-05 Thread Mark Leder
Here's three sets of code in three messages, since HOF cuts it all off. Post When I use this code in an application.CFM everything works fine. Essentially, I'm sniffing the browser and setting Session vars so that a correct CSS sheet can be presented. Could it have something to do with locking

RE: onSessionStart problem Post 2 of three

2005-11-05 Thread Mark Leder
=== browserSniffer.cfc cfcomponent hint=Get All Browser Attributes and place in a Session cffunction access=public name=getAttributes output=false !--- CF_BrowserHawk4J Displays all attributes --- CF_BrowserHawk4J

RE: onSessionStart problem Post 3 of 3

2005-11-05 Thread Mark Leder
=== css.cfc === cfcomponent hint=Sets the Cascading Style Sheets for use during this session (requires the browserSniffer.cfc component cffunction access=public name=setCSS output=false cflock name=#REQUEST.prefix##SESSION.SessionID# timeout=10 throwontimeout=no

RE: onSessionStart problem

2005-11-05 Thread Mark Leder
Also, I tried taking out the locks in the two cfcs - still won't work. Restarted CF server, no change. This is really frustrating as this code has worked great (and is working right now) on other sites just using application.cfm with the var check cfif NOT IsDefined(SESSION.browserSniffer) run

Re: cfxpdf performance issues

2005-11-05 Thread Douglas Knudsen
we are using the tags, no HTML used. DK On 11/5/05, jonese [EMAIL PROTECTED] wrote: how are you generating? with HTML or using the tags? jonese On 11/5/05, Douglas Knudsen [EMAIL PROTECTED] wrote: Anyone out there using easel2's cfxpdf? Yes, we are still on CF6.1, no version 7 until

Re: onSessionStart problem

2005-11-05 Thread Sean Corfield
On 11/5/05, Mark Leder [EMAIL PROTECTED] wrote: Also, I tried taking out the locks in the two cfcs - still won't work. Restarted CF server, no change. This is really frustrating as this code has worked great (and is working right now) on other sites just using application.cfm with the var

RE: onSessionStart problem

2005-11-05 Thread Mark Leder
Nope. Rebooted the server. Rebooted my XP machine. In FF before launching the site, cleared history, cookies, cache. Same problem won't return the session vars (if it were even empty ones I'd be happy). I'll put the Cflog file widget in next. Mark

RE: onSessionStart problem

2005-11-05 Thread Mark Leder
Apparently, onSessionStart (or the application.cfc file itself) does not like the custom tag for BrowserHawk. I tried putting the invokes outside of the function tag with the same non-results. ~| Find out how CFTicket can

Re: Proper use of CASE and maybe CAST in SQL

2005-11-05 Thread Gonzo Rock
Finally! a SOLUTION SELECT Starts, Rejects, CASE WHEN Starts = 0 THEN 1 ELSE (Cast(History.Starts as Numeric)-Cast(history.Rejects as Numeric))/Cast(History.Starts as Numeric) END AS Yield FROM History On 11/5/05, Gonzo Rock [EMAIL PROTECTED] wrote: SELECT Starts, Rejects, CASE WHEN Starts =

RE: onSessionStart problem

2005-11-05 Thread Mark Leder
Interestingly, the BrowserHawk tag works if I place it inside onRequestStart but not if its inside onSessionStart. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

re: Want to test our Flex App?

2005-11-05 Thread dave
i guess he didnt notice this isnt a .crap list and i like how he uses a yahoo address to send his spam out, very classy. ~Dave the disruptor~ Some people just don't appreciate how difficult it is to dispense wisdom and abuse at the same time. From:

eclpise and dw playing together

2005-11-05 Thread dave
can they both read from the same folders without having to reimport the files in ecplise every time you switch between them? ~Dave the disruptor~ Some people just don't appreciate how difficult it is to dispense wisdom and abuse at the same time.

RE: eclpise and dw playing together

2005-11-05 Thread Bobby Hartsfield
My guess would be no since both apps 'appear' to compare the opened template with the last saved file and date every time you give focus to them. That may not make any sense what-so-ever so example... You have a template opened in DW. Open the same file in notepad, make a change and save it.

Re: (OT) server rebooting after virus

2005-11-05 Thread Michael Dinowitz
I couldn't remove or replace the explorer.exe but I did hunt down an 'extra' inetinfo and svchost program running as well as 2 kill utilities that should not have existed. I think I've cleaned out everything but I'll know after a day or two with no instant-reboot. Thanks for the help. I'm just

Re: (OT) server rebooting after virus

2005-11-05 Thread James Holmes
Were you definitely up-to-date with patching? These worms exploit security holes in Windows. On 11/6/05, Michael Dinowitz [EMAIL PROTECTED] wrote: I'm just a bit worried how they got on as the machine is secure and I never had any problems in the past. This happened as soon as the hardware

Re: Convert Address to Latitude/Longitude

2005-11-05 Thread Paul Hastings
Emmet McGovern wrote: This site claims to hack the geocode out of googles API. Interesting yeah you can parse it out of a search response easily enough. considering google's API specifically says it does not provide geocode information. It's also a CF site. I'd be very interested to see

Re: [SPAM : 8.1] Re: Rumors from Max..

2005-11-05 Thread Paul Hastings
Matt Robertson wrote: As an aside I had quite a few Access db's at the time I switched over to 6.1. Using the Unicode drivers, I never had a lick of trouble with any of them. of course, unicode is the cure for all your ailments ;-) but be careful w/that jadozoom driver, it has it's own

Re: Convert Address to Latitude/Longitude

2005-11-05 Thread Paul Hastings
dave wrote: thats nice you should share the code ;)~ should be fairly easy but FI im a lazy SOB today!! yeah i've been meaning to clean it up put it on that page. some time next week if i get the time. ~| Find out how

Re: Convert Address to Latitude/Longitude

2005-11-05 Thread Paul Hastings
Emmet McGovern wrote: That's beautiful. Did you code that just for kicks? well besides i18n work we do a lot of GIS but i did it mainly to learn flashforms better make seth duffey mike nimer jealous ;-) ~| Logware

Re: Convert Address to Latitude/Longitude

2005-11-05 Thread Tony
ive told paul before too, HOLY crap that is some good work... tony On 11/5/05, Paul Hastings [EMAIL PROTECTED] wrote: Emmet McGovern wrote: That's beautiful. Did you code that just for kicks? well besides i18n work we do a lot of GIS but i did it mainly to learn flashforms better make

Re: Proper use of CASE and maybe CAST in SQL

2005-11-05 Thread Barney Boisvert
Two INTs will always produce an INT, but a floating point number and an INT will produce a floating point number. So you could just do (1.0 * starts - rejects) / starts in the ELSE clause. cheers, barneyb On 11/5/05, Gonzo Rock [EMAIL PROTECTED] wrote: Finally! a SOLUTION SELECT Starts,

Re: [SPAM : 8.1] Re: Rumors from Max..

2005-11-05 Thread Matt Robertson
On 11/5/05, Paul Hastings [EMAIL PROTECTED] wrote: of course, unicode is the cure for all your ailments ;-) but be careful w/that jadozoom driver, it has it's own quirks such as it's own set of reserved words. Hey Paul... where you been hiding? Yeah I've noticed the quirk o' the reserved