Re: OT - Setting up Information Screens for countries outside of the US

2008-11-06 Thread Tom Chiverton
On Wednesday 05 Nov 2008, Dave Hatz wrote: Also, if you know of any pitfalls we might face making the jump into Europe, please feel free to give us your advice. You'll probably need a lawyer to make sure you comply with whatever laws there other in the other places too. -- Tom Chiverton

Re: Improvong code and application

2008-11-06 Thread Tom Chiverton
On Wednesday 05 Nov 2008, Scott Stewart wrote: WHERE X = cfqueryparam value=#dynamic.variable# cfsqltype=some SQL type And in terms of having a tool do it automatically for you, you can skip the cfsqltype too. -- Tom Chiverton Helping to seamlessly enable efficient cross-media appliances

Re: OT - Setting up Information Screens for countries outside of the US

2008-11-06 Thread Mark Phillips
1. You'll probably get the best response if you have a screen for each company. Check out the order page for the Centaur Shirt http://sites.fastspring.com/centaur/product/centaurshirtcffanshirt The American flag in the upper right-hand corner is a pull-down of other countries. Select a different

Re: cfchart Flash chart not showing

2008-11-06 Thread Tom Chiverton
On Thursday 06 Nov 2008, Sebastian Powell wrote: When changing the chart to format type jpg they do appear, so seems to suggest an issue with the chart format type flash. What is the actual output on the page ? Could it be referencing a (JavaScript) file or something that isn't present ? --

Re: variables declaration in udfs

2008-11-06 Thread Brian Dumbledore
Good idea. thanks. cfset var LOCAL = StructNew() or {} if on CF8. Then reference all your local vars as LOCAL.queryName etc. Adrian Building a database of ColdFusion errors at http://cferror.org/ I have a udf, to force a query in the udf to be local, I jsut do a cfset var qname = before I do

Older versions of CF

2008-11-06 Thread Brian Dumbledore
If I want to download older versions of CF, is it still possible?? I am interested in a plain CFMX standard version (not 6.1). Can someone please help? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: Older versions of CF

2008-11-06 Thread Dave Watts
If I want to download older versions of CF, is it still possible?? I am interested in a plain CFMX standard version (not 6.1). Can someone please help? Adobe no longer distributes older versions of CF. Fig Leaf Software has been authorized by Adobe to distribute older versions of CF. If you

Could not find the ColdFusion Component or Interface message

2008-11-06 Thread Torrent Girl
Hello all I am setting up a staging site that is an exact replica of our live site. Both are on the same server. I copied the live files over to staging but am getting an error on our userAuthentication CFC. I am getting 'Could not find the ColdFusion Component or Interface' BUT the cfc is

Re: Older versions of CF

2008-11-06 Thread Brian Dumbledore
Thanks Dave, Honestly I am looking for the version that actually creates .java files before the bytecode is generated for the cfm pages. I am interested in knowing the cf to java internals. I read on a couple of posts that the flag is disabled from 6.1 on. So I guess I need the version just

Re: Could not find the ColdFusion Component or Interface message

2008-11-06 Thread Gerald Guido
The dot.notation.path to the CFC probably needs to be changed. G On Thu, Nov 6, 2008 at 10:47 AM, Torrent Girl [EMAIL PROTECTED] wrote: Hello all I am setting up a staging site that is an exact replica of our live site. Both are on the same server. I copied the live files over to staging

Re: Could not find the ColdFusion Component or Interface message

2008-11-06 Thread Torrent Girl
Do you have any mappings to the directory containing the CFC? I do that in the CF admin correct? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Older versions of CF

2008-11-06 Thread Dave Watts
Honestly I am looking for the version that actually creates .java files before the bytecode is generated for the cfm pages. I am interested in knowing the cf to java internals. I read on a couple of posts that the flag is disabled from 6.1 on. So I guess I need the version just before

Re: Could not find the ColdFusion Component or Interface message

2008-11-06 Thread Gerald Guido
Correct. Or in Application.cfc on CF 8. Beware. There are a some Gotcha's with using Application.cfc http://www.12robots.com/index.cfm/2008/3/27/Why-CF8-Application-Specific-Mapping-won%27t-solve-all-of-our-woes

RE: Could not find the ColdFusion Component or Interface message

2008-11-06 Thread Andy Matthews
Do you have any mappings to the directory containing the CFC? -Original Message- From: Torrent Girl [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2008 9:47 AM To: cf-talk Subject: Could not find the ColdFusion Component or Interface message Hello all I am setting up a staging

Re: Older versions of CF

2008-11-06 Thread Brian Dumbledore
I am sure they made lots of changes to the internals, thats y cf 8 is so incredibly faster than the previous versions, but I hope they didn't drastically change all the data structures. I do not want to takeup your after hours time, let me check if I can find the mx version elsewhere, if I

Re: Older versions of CF

2008-11-06 Thread Dave Watts
I do not want to takeup your after hours time, let me check if I can find the mx version elsewhere, if I can't and if I still want it, I will ask you for help. OK. Thank you very much for your time.. btw, any guesses on what they use to convert .cfm to bytecode direct ??? Not really, I

REReplace to avoid HTML elements

2008-11-06 Thread Aaron Rouse
I have been using REReplace to find key words or group of words within paragraphs and if found to replace those with an HREF. All has been working fine and well until recently when one of those key words became sub and some paragraphs make use of the HTML element SUB. So what I am curious on is

Re: REReplace to avoid HTML elements

2008-11-06 Thread Peter Boughton
I have been using REReplace to find key words or group of words within paragraphs and if found to replace those with an HREF. The following code works. (I haven't yet decided whether it's entirely the best way though...) cfset Content = ListToArray(Content,'')/ cfloop index=i from=1

Re: cfchart Flash chart not showing

2008-11-06 Thread Sebastian Powell
Looking at the page in the browser there is a warning in the status bar which says: Line:204 Char:1 Error:Object Expected Code 0 Thanks, Bas. I have developed a few charts of format type flash using cfchart on a development version of CF8 and they can be viewed no problems in the

ColdFusion 8, Oracle db unicode problem

2008-11-06 Thread Branislav Lungulovic
Is connection property oracle.jdbc.defaultNChar supported with supplied Oracle driver in ColdFusion 8? It seems to be impossible to save unicode encoded strings in nvarchar2 and nchar table fields when database charset (NLS_CHARACTERSET ) is not UTF8 or AL16UTF16. I did manage to save

Re: Passing URL variables to cfwindow?

2008-11-06 Thread Pete Ruckelshaus
Won't that create an excessive number of instances of cfwindow? I was trying to be efficient by creating a single instance and then passing the variable to it. Pete On Wed, Nov 5, 2008 at 9:51 PM, Rob Parkhill [EMAIL PROTECTED] wrote: Pete, The following works no problem for me cfwindow

Re: Passing URL variables to cfwindow?

2008-11-06 Thread Pete Ruckelshaus
OK, figured out a solution: a href=javascript:ColdFusion.Window.show('mywin');ColdFusion.navigate('test2.cfm?a=1','mywin');Show/a cfwindow source=test2.cfm width=350 height=350 name=mywin initshow=false modal=true title=Edit center=true / Basically, create the window, then navigate to the

Random Numbers

2008-11-06 Thread Rick Sanders
I'm trying to do something simple here. How do I simply pull a random number? I looked at rand, randomize, and randrange but they are for mathematical calculations. All I want to do is define a rang (1 - 10) and pull a number in that range. Thanks in advance, LogoSig Rick Sanders

Re: Random Numbers

2008-11-06 Thread Barney Boisvert
randRange(1, 10)? On Thu, Nov 6, 2008 at 3:51 PM, Rick Sanders [EMAIL PROTECTED] wrote: I'm trying to do something simple here. How do I simply pull a random number? I looked at rand, randomize, and randrange but they are for mathematical calculations. All I want to do is define a rang (1

Re: Random Numbers

2008-11-06 Thread s. isaac dealey
I'm trying to do something simple here. How do I simply pull a random number? I looked at rand, randomize, and randrange but they are for mathematical calculations. All I want to do is define a rang (1 - 10) and pull a number in that range. No, randrange is the one you want...

RE: Random Numbers

2008-11-06 Thread Rick Sanders
Thanks. I realized as I hit the send button that was it. I was looking at something more complicated, but it was as easy as RandRange. Time to step away from the computer! -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: November-06-08 7:53 PM To: cf-talk

Re: Passing URL variables to cfwindow?

2008-11-06 Thread Rob Parkhill
Cool Pete, I think that I will just have to borrow that Rob On Thu, Nov 6, 2008 at 5:17 PM, Pete Ruckelshaus [EMAIL PROTECTED]wrote: OK, figured out a solution: a href=javascript:ColdFusion.Window.show('mywin');ColdFusion.navigate('test2.cfm?a=1','mywin');Show/a cfwindow

CF 8 Security issue and related hotfix

2008-11-06 Thread James Holmes
I hope everyone is aware of this: http://www.adobe.com/support/security/bulletins/apsb08-21.html It's easy to miss since Adobe have chosen not to update the hotfix list: http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402604 mxAjax / CFAjax docs and other useful articles:

Re: REReplace to avoid HTML elements

2008-11-06 Thread Aaron Rouse
Thanks Peter, I got to talking to Isaac Dealey this evening about this since he had helped out a while back on this particular project. He mentioned what I need is a lookahead in the regex. After a few tries this is what we ultimately came up with this:

Re: CF 8 Security issue and related hotfix

2008-11-06 Thread James Holmes
Ah, I see the hotfix install guide was written using the cut and paste random hotfix instructions method of documentation building: 1. Stop all ColdFusion services. -- ok, no problem 2. Download and unzip the hot fix. (51K) -- yep, done, although it's a jar so there's nothing to unzip 3.

Re: lists question

2008-11-06 Thread Larry C. Lyons
That's a great idea Michael. I'm all for it. regards, larry On Wed, Nov 5, 2008 at 4:31 PM, Michael Dinowitz [EMAIL PROTECTED] wrote: CF-Jobs is written so that any reply is automatically sent to the original posters email address, not to the cf-jobs list. In order to reply to the cf-jobs

Re: Google Maps

2008-11-06 Thread Phillip M. Vector
I attempted to work for this person before. Before you reply, you should probably know some things about him/her. Contact me off line if interested. steve fontes wrote on CF-Jobs: I need Google Maps API loaded into my website so this will show an address map for each of my directory listings.

CF Job Market

2008-11-06 Thread Dave Phillips
Hi all, My job will be ending sometime next year due to a merger. I'm a Senior level CF Developer with 10+ years experience. I am wondering what the job market is looking like out there for us senior type CF developers with the economy the way it is here in the US. What I'm concerned

Re: CF Job Market

2008-11-06 Thread Aaron Rouse
I am not looking for work and have not been in a long time but I still continue to get contacted by places looking to hire people with my skill set. To me it does not seem like the market has lesson any and perhaps has even increased. I am sure that greatly depends on where someone is located

RE: CF Job Market

2008-11-06 Thread Michael MacDonald
Michael, You make a great point and your grasp of the reality of the current landscape is commendable. I am actually looking for Jr-Mid-Level CFMX programmers for this exact reason. Those with less time in the market typically are less procedural and more likely to have an OO state of mind.

Re: CF Job Market

2008-11-06 Thread CF Developer
I hope neither of you are making that a stereotype. I have 10 years as a CF developer, and EVERYTHING I do is OO, and I have a fundamental understanding of it, and use the usual OO frameworks like Mach-ii, ColdSpring, and Transfer (although I have developed OO apps without a front controller,

Re: CF Job Market

2008-11-06 Thread Aaron Rouse
I have been working with it since it basically came out in the 90s. I do some OO and some procedural, it really depends on who I am doing work for. For example some of the places I do work for have their own inhouse frameworks and methodologies which are not OO but that is what you use when you

Re: CF Job Market

2008-11-06 Thread Scott Stewart
I've gotta agree here, I've got 10 plus years, and I'm learning OO. It's the same warped logic that assumes that a degree equals a better developer. CF Developer wrote: I hope neither of you are making that a stereotype. I have 10 years as a CF developer, and EVERYTHING I do is OO, and I have

RE: CF Job Market

2008-11-06 Thread Dave Phillips
Michael, Long timers have their way and any other approach is met with hesitation and disdain. This is a personality issue, NOT a result of having 10+ years of experience. I know plenty of CFers who have been around for 10 years that are doing OOP in CF, including myself. Also, I 'embrace' new

Re: CF Job Market

2008-11-06 Thread s. isaac dealey
Scott Stewart wrote: I've gotta agree here, I've got 10 plus years, and I'm learning OO. It's the same warped logic that assumes that a degree equals a better developer. CF Developer wrote: I hope neither of you are making that a stereotype. I have 10 years as a CF developer, and

Re: CF Job Market

2008-11-06 Thread Scott Stewart
The internet is your best friend in learning OO theory. I'm fortunate that my local CFUG has an OO god, in Dan Wilson who speaks at just about every meeting, and is more than willing to answer the kind of stupid questions I'll ask. Anymore I take my laptop with me to interviews, I have CF and

Re: CF Job Market

2008-11-06 Thread Matt Williams
On Thu, Nov 6, 2008 at 1:03 PM, Dave Phillips [EMAIL PROTECTED] wrote: My job will be ending sometime next year due to a merger. I'm a Senior level CF Developer with 10+ years experience. I am wondering what the job market is looking like out there for us senior type CF developers with the