RE: Quicky

2002-04-12 Thread Raymond Camden
Sounds like a good idea. I'll take care of the Evaluate chapter. ;) Of course, at the same time, I can't stand people who change code from cfif x is y to compare because supposedly compare is .001 ms faster. ;) === Raymond

RE: How do you call a cfscript udf function and pass a query to it?

2002-04-15 Thread Raymond Camden
Bare in mind that almost any UDF could be rewritten as a custom tag, or as a cfinclude. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: CF MX

2002-04-18 Thread Raymond Camden
Without a doubt, this is a no-no. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: neo question

2002-04-18 Thread Raymond Camden
_know_ about it. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message

RE: IsDefined and brackets

2002-04-18 Thread Raymond Camden
Don't use isDefined. Use StructKeyExists() cfif structKeyExists(aStruct,aField) dont step on my blue suede shoes /cfif === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL

RE: Send response to browser, but continue working on request?

2001-12-11 Thread Raymond Camden
If you are running CF5, just use CFFLUSH. Sample: ... Hey, I'm doing a bunch of junk, please stand by CFFLUSH CFREALSLOWTHING === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL

RE: UDF Error

2001-12-12 Thread Raymond Camden
Owen, I'm investigating this as well. I got it on cflib.org a few times, and the UDF in question was _not_ declared twice and was not on line 1 for certain. There were also no variables with the same name. === Raymond Camden

RE: lock var inside JS script?

2001-12-13 Thread Raymond Camden
() { CFLOCK SCOPE=Session TYPE=ReadOnly TIMEOUT=3 alert(Hi #JSStringFormat(Session.Name)#); /CFLOCK } /script === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email

RE: CF and JS

2001-12-14 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: encrypting/decrypting...

2001-12-18 Thread Raymond Camden
Tyler, I ran your code exactly as you have it, and didn't get any errors. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: encrypting/decrypting...

2001-12-18 Thread Raymond Camden
(myid) cfoutputdecoded #myid2#/cfoutput The only difference is that I used the name, myid2 in the last line of code. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM

RE: Counting the number of words in a field

2001-12-18 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 10:49 AM

RE: Cfparam fuction

2001-12-18 Thread Raymond Camden
Yes. http://www.cflib.org/udf.cfm?ID=144 It's a UDF though, not a 'real' built in equivalent. The current version doesn't do the validation that CFPARAM does. === Raymond Camden, Principal Spectra Compliance Engineer

RE: Forms and CF Code

2001-12-19 Thread Raymond Camden
Why would anyone need to clean cfcode? Unless you save user input to a file and cfinclude it, it will not get executed. FYI, to clean HTML and stuff, look for StripHTML on cflib.org. === Raymond Camden, Principal Spectra

RE: Forms and CF Code

2001-12-19 Thread Raymond Camden
Interesting. Good point. This is one more reason why we need to preach to people to NOT use evaluate to get form fields. I need to go on a crusade or something. ;) === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

RE: cf include file

2001-12-19 Thread Raymond Camden
The whole point of cfinclude is to include code. What happens when you use cfinclude? You are using CFINCLUDE, right? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo

RE: Finding an a specific item in array

2001-12-20 Thread Raymond Camden
, or some such. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From

RE: Finding an a specific item in array

2001-12-20 Thread Raymond Camden
=== Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Raymond Camden

RE: Best practises for UDFs

2001-12-20 Thread Raymond Camden
[2].age = 28; You get the idea. This slow and boring. However, with a UDF that writes to the local page scope, I can do: arr = arrayNew(1); newPerson(Jacob,Camden,2); newPerson(Raymond,Camden,28); function newPerson(fname,lname,age) { arr

RE: debug udf

2001-12-21 Thread Raymond Camden
you dropped off the layers. Then on next reload, put the layers where the user last left them. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: How can I get a query's name?

2001-12-21 Thread Raymond Camden
Or why not just call your udf like so: displayQuery(query,TheQuery) Ie, pass the data _and_ the name. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus

RE: Quarter formula

2002-01-02 Thread Raymond Camden
Um, have you tried the BIF (built in function) Quarter? :) Quarter(Now()) === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: Quarter formula

2002-01-02 Thread Raymond Camden
If your logic is: 1=4 2=1 3=2 4=3 Then just say: cfset Quarter = QuarterNow()-1 cfif not Quarter cfset Quater = 4 /cfif === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL

RE: Quarter formula

2002-01-02 Thread Raymond Camden
Oops, QuarterNow should be Quarter(Now()). This is what happens when I try to code listening to 80s music. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM

RE: Session Variable help???

2002-01-02 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Kris Pilles [mailto

RE: Inheriting Application.cfm?

2002-01-02 Thread Raymond Camden
for it. I've used this method multiple times in the past. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: Passing recordset to caller template

2002-01-03 Thread Raymond Camden
A few ways, 1) Just name the query caller.whatever. cfquery name=caller.Data ... 2) Just set it: cfset caller.data = data === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED

RE: Simple FORM Variable ERROR?????

2002-01-03 Thread Raymond Camden
... cfset x = 1 cfset y = x === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original

RE: Tag CFSCRIPT

2002-01-07 Thread Raymond Camden
Do you mean, If CFSCRIPT 100% compatible w/ JavaScript? If so, the answer is no. Things like object constructors: var point = { x:0, y:9 }; are not possible in CFSCRIPT. === Raymond Camden, Principal Spectra Compliance

RE: Tag CFSCRIPT

2002-01-07 Thread Raymond Camden
); === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Monday

RE: CFLOCK on files

2002-01-08 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL

RE: CFLOCK on files

2002-01-08 Thread Raymond Camden
, and append the incorrect number. In this case, the lock is used for logical reason. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: problem with dynamic data in my select boxes

2002-01-08 Thread Raymond Camden
Errr, won't this mean that every value AFTER the correct one will also be marked selected? Sure the browser will use the first one, but that i'snt good. I'd add a cfset select = before the cfif. -Raymond cfset thisDecisionID = getReviewers.decisionID CFLOOP query=getDCodes CFIF

RE: Sorting multi-dimensional arrays?

2002-01-09 Thread Raymond Camden
You try... http://www.cflib.org/udf.cfm?ID=390 === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: array - structure question

2002-01-11 Thread Raymond Camden
; arrayAppend(request.contact,d); } === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: Forumspot.org or free opensouce forums

2002-01-11 Thread Raymond Camden
Wow, so much for Macromedia/Allaire's Community Source project, I wonder if it's just a matter of time before the same thing happens to Spectra? Um, no. === Raymond Camden, Principal Spectra Compliance Engineer

RE: Forumspot.org or free opensouce forums

2002-01-11 Thread Raymond Camden
WDDX.org - strike one Well, wddx.org is gone, but openwddx.org remains. :) -rc __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

RE: General Question

2002-01-14 Thread Raymond Camden
Sure, check the CGI vars, like CGI.CF_TEMPLATE_PATH. If the file doesn't match the current file, it's being run as a CFINCLUDE, not as a direct call. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

RE: udf in a complex custom tag

2002-01-16 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Alexander just me Apartsev [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002

RE: Looping though form fields for insert

2002-01-17 Thread Raymond Camden
Ack! No! Remember that yo udo not need to use evaluate to get form fields! cfloop item=field collection=#form# cfoutputForm.#field# is #Form[Field]#br/cfoutput /cfloop === Raymond Camden, Principal Spectra Compliance

RE: copying individual query rows

2002-01-17 Thread Raymond Camden
=== Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Brent Goldman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16

RE: Preventing URL Variables from being changed

2002-01-18 Thread Raymond Camden
The other solutions provided work nice. You may also want to consider URLHash from cflib.org. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: Capture Output from CFINCLUDE?

2002-01-18 Thread Raymond Camden
Are you sure? I ran the exact same code and it ran just fine. Are you saying that cfsavecontent is being ignored and the output is showing up anyway? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

RE: Macromedia's destruction of the Allaire Site...

2002-01-28 Thread Raymond Camden
Nope, I was just an early user, developer, etc. I wasn't _the_ developer. No, my baby is a two year old who likes to answer everything with a nice firm No!. === Raymond Camden, Principal Spectra Compliance Engineer

RE: split

2002-01-29 Thread Raymond Camden
Yes. I should give thanks to Thomas Muck for sending in a solution to this. I've had the fix for a few days but have been too busy to get it into the site. The UDF is now updated. === Raymond Camden, Principal Spectra

RE: Optional UDF arguments

2002-01-29 Thread Raymond Camden
always return something in a UDF. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: request scope.

2002-01-31 Thread Raymond Camden
;). === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 31, 2002 10:00 AM

RE: request scope.

2002-01-31 Thread Raymond Camden
At 10:15 AM 01/31/2002 -0500, you wrote: They are global to the request, the same way that application or server variables are. Unlike application / server variables, they are not, persistent among separate requests. They are Global, but not persistent. I view each ColdFusion

RE: request scope.

2002-01-31 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda __ Get Your Own Dedicated Windows 2000 Server PIII 800

RE: using CFEXECUTE

2002-01-31 Thread Raymond Camden
Try adding TIMEOUT=X (replace x with a reasonable timeout value). === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful

RE: request scope.

2002-01-31 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: request scope.

2002-01-31 Thread Raymond Camden
and onRequestend.cfm share the same local scope. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: How do you use UDFs in CF 5

2002-01-31 Thread Raymond Camden
cfset foo = countIt(x) === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: Proper way to check for successful subexpression match?

2002-01-31 Thread Raymond Camden
This should work: if(lNameStrc.len[1]) { On failuare, lNameStrc.len(and pos)[1] == 0. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: How do you use UDFs in CF 5

2002-01-31 Thread Raymond Camden
. does it make sense to map them to a REQUEST scope? :-) I have in the past when I wanted to use a particular UDF in a custom tag, although you can always do cfset x = caller.foo(). === Raymond Camden, Principal Spectra

RE: How do you use UDFs in CF 5

2002-01-31 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda __ Get Your Own

RE: CFPARAM Question

2002-01-31 Thread Raymond Camden
Right - think about it - cfparam says, If foo doesn't exist, make it. So, only the first cfparam will do anything. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM

RE: ReReplace(NoCase) maximum length

2002-02-01 Thread Raymond Camden
example shows. Here the variable input has a size greater than 5. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally

RE: Replacing Commas in a Form Field to keep list from Bombing

2002-02-03 Thread Raymond Camden
Don't forget you don't need evaluate to get form fields. Change evaluate(form.#itemname#) to form[itemName]. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM

RE: comma to tab

2002-02-03 Thread Raymond Camden
ListChangeDelims() will replace any list delimiter with another. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful

RE: Possible bug in StructFindKey() in CF Ent 4.5.1 SP-2 on Win NT4/2000 Server?

2002-02-05 Thread Raymond Camden
wddx, you will see the 'real' form of it. Please share the code - what you can anyway! === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: Possible bug in StructFindKey() in CF Ent 4.5.1 SP-2 on Win NT4/2000 Server?

2002-02-05 Thread Raymond Camden
Colin, I didn't forget about you - I'm pretty intimate with StructFindKey (because of some Neo work), so I promise to take a look - but I won't be able to till tomorrow. === Raymond Camden, Principal Spectra Compliance Engineer

RE: Best Practices

2002-02-05 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Deborah Curley [mailto:[EMAIL PROTECTED]] Sent: Tuesday

RE: Bug in CF 5's FirstDayOfMonth?

2002-02-06 Thread Raymond Camden
note it! === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From

RE: Bug in CF 5's FirstDayOfMonth?

2002-02-06 Thread Raymond Camden
. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: Bug in CF 5's FirstDayOfMonth?

2002-02-06 Thread Raymond Camden
Welp, this is why using Livedocs is so cool. It allows us to find small stuff that has been missed. :) === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus

RE: Custom Tag

2002-02-06 Thread Raymond Camden
Attributes is a struct, so to get the list, just use StructKeyList(). === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: CFIF statement

2002-02-06 Thread Raymond Camden
You must have a proper expression on both sides of the OR statement. Here is what you wrote, in pseudo code: if my name is 'ray' or 'bob' This is not valid. It must be if my name is 'ray' OR my name is 'bob' === Raymond

RE: ListGetAt error?!

2002-02-16 Thread Raymond Camden
CFLib.org has a UDF (ListFix) that will replace empty elements in a list with null characters (of your chosing). Look for ListFix. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL

RE: Passing Arrays

2002-02-19 Thread Raymond Camden
Your code below should work fine - you probably have an issue in your UDF code. Can you share that? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My

RE: CFMX Structure Sorting

2002-09-19 Thread Raymond Camden
in sorted order. FYI - any reason why opts is a struct and not an array? If you plan on using numbers for the keys, it may be more appropriate to use an array. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL

RE: Variables Collection loop

2002-09-19 Thread Raymond Camden
/cfoutput /cfloop === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Ken Brocx

RE: query of queries LIKE case sensitivity

2002-09-20 Thread Raymond Camden
. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: jon hall [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 1:42 PM To: CF-Talk Subject

RE: Return Variables for CFCs

2002-09-23 Thread Raymond Camden
If you want to indicate a failure in your CFC, why not simply cfthrow an error? You can set both a type, details, and message for the error. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo

RE: Re-Sort a Query...

2002-09-23 Thread Raymond Camden
If you are using CF5 or higher, you can use QofQ. If you are using MX, I've even got a UDF for it... cfset query = querySort(query,new column to sort by) === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL

RE: Re-Sort a Query...

2002-09-23 Thread Raymond Camden
. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 3:54 PM To: CF-Talk

RE: Return Variables for CFCs

2002-09-23 Thread Raymond Camden
At 03:14 PM 9/23/2002 -0400, you wrote: If you want to indicate a failure in your CFC, why not simply cfthrow an error? You can set both a type, details, and message for the error. Sounds good. Thanks, Jedi. Another question, since you're the Jedi master: If I create a complex

RE: QueryNew() Filtering Problems

2002-09-24 Thread Raymond Camden
cfdump var=#test# === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Ryan Edgar

RE: QueryNew() Filtering Problems

2002-09-24 Thread Raymond Camden
=#test2# === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Zac Spitzer [mailto:[EMAIL

RE: WDDX Error in CFMX

2002-09-24 Thread Raymond Camden
to use the data. 2) Does your data contain a structure with a key containing a single quote? Ie, cfset foo[ray's world]. This will not be deserializable. Also - try adding a trim around the ThisTag.generatedcontent. === Raymond

RE: WDDX Error in CFMX

2002-09-24 Thread Raymond Camden
it is. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Reilly, Jim [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 24

RE: client variables issue

2002-09-24 Thread Raymond Camden
Is clientmanagement=true in the cfappication tag? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original

RE: client variables issue

2002-09-24 Thread Raymond Camden
You've told the application to use a datasource, clientStorage, as your client database. Is clientStorage a valid datasource? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus

RE: client variables issue

2002-09-24 Thread Raymond Camden
I must be missing something obvious - becuase I don't see it. What happens if you change to clientStorage=registry ? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: valuelist under CFMX bug?????

2002-09-26 Thread Raymond Camden
My testing isn't showing this. Anyone else see it? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original

RE: valuelist under CFMX bug?????

2002-09-26 Thread Raymond Camden
My initial test had been against SQL Server, but I get the same results w/ Access as well. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: So many problems with CFC scopes...

2002-09-28 Thread Raymond Camden
, and there are cases when you should use one or the other. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: Ben's J2EE Book

2002-09-28 Thread Raymond Camden
I want to +1 this. Like Sean, I can't give details, but as a coder, I really, really, really like this course. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: So many problems with CFC scopes...

2002-09-29 Thread Raymond Camden
comment is that it's wrong to say you should NOT uses UDFs. I wouldn't use a CFC as a UDF library, but I don't see it as bad per se, just maybe not appropriate. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL

RE: Ben's J2EE Book

2002-09-29 Thread Raymond Camden
. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Neil Robertson-Ravo =TMM= [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 29, 2002 9:36 AM To: CF-Talk

RE: So many problems with CFC scopes...

2002-09-29 Thread Raymond Camden
be somewhat different. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda

RE: Ben's J2EE Book

2002-09-29 Thread Raymond Camden
. ;) === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 29, 2002 3:00 PM

RE: Verity operators - THESAURUS, TYPO, SOUNDEX

2002-09-30 Thread Raymond Camden
. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Nick de Voil [mailto:[EMAIL PROTECTED]] Sent: Monday

RE: Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Raymond Camden
in the background to match the colour of the setting sun. It's very focused on things that can apply to a web application. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Raymond Camden
wearing art freaks. (And yes, I'm JUST joking. ;) === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message

RE: Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Raymond Camden
geek'. If anyone thinks its out of place for a MACR employee to tout Flash... well... sorry. ;) === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Raymond Camden
if I sound like a fan-boy or marketer, I just can't stop raving about this new class. I would recommend it to anyone. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally

RE: Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Raymond Camden
editor, it all came down to simple rules and action script - and any CFML person can learn AS. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force

RE: Verity operators - THESAURUS, TYPO, SOUNDEX

2002-09-30 Thread Raymond Camden
They were in CF5 as well. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From

RE: Flash for data views : WAS Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Raymond Camden
If all you are doing is presenting data to the user with no interaction, then there is not much advantage to using Flash. However, if the users interacts with that data in any way, then there are advantages. Namely, the fact that the entire page will not need to be refreshed to update

<    1   2   3   4   5   6   7   8   9   10   >