RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
is a good idea. Rick > -Original Message- > From: Dominic Watson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 20, 2008 12:52 PM > To: CF-Talk > Subject: Re: Aaack! What does this error message mean? > > Quite possibly a case of variable scoping (or the lac

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
[EMAIL PROTECTED] > Sent: Wednesday, February 20, 2008 12:13 PM > To: CF-Talk > Subject: RE: Aaack! What does this error message mean? > > It generally means that you tried to call an undefined variable. Why it > couldn't just say that, I don't know. I think that a group

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
50 PM > To: CF-Talk > Subject: RE: Aaack! What does this error message mean? > > try this: > > > > > > > ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to da

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
bruary 20, 2008 12:23 PM > To: CF-Talk > Subject: Re: Aaack! What does this error message mean? > > Using is trying to set a key called To in a > Structure called Email. The error seems to indicate that Email is not > actually a Structure, though. will declare Email > as a Str

Re: Aaack! What does this error message mean?

2008-02-20 Thread Dominic Watson
Quite possibly a case of variable scoping (or the lack of) causing confusion. Could there be a string variable called Email set anywhere else? That is what the error is saying. You can reproduce the error with something like: So, the first line has happened somewhere in your code previous to t

RE: Aaack! What does this error message mean?

2008-02-20 Thread Adkins, Randy
From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 20, 2008 12:45 PM To: CF-Talk Subject: RE: Aaack! What does this error message mean? Well... you can see from the error message it's having a problem with these lines: The error occurred in E:\Inetpub\webroot\c21-ar\Applicatio

RE: Aaack! What does this error message mean?

2008-02-20 Thread Rick Faircloth
t out those line in the Application.cfm, the error disappears... Rick > -Original Message- > From: Billy Cox [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 20, 2008 12:13 PM > To: CF-Talk > Subject: RE: Aaack! What does this error message mean? > > It generally me

Re: Aaack! What does this error message mean?

2008-02-20 Thread morgan l
Using is trying to set a key called To in a Structure called Email. The error seems to indicate that Email is not actually a Structure, though. will declare Email as a Structure. On Wed, Feb 20, 2008 at 10:55 AM, Rick Faircloth <[EMAIL PROTECTED]> wrote: > Hi, all… > > I knew I'd get into some

RE: Aaack! What does this error message mean?

2008-02-20 Thread Billy Cox
It generally means that you tried to call an undefined variable. Why it couldn't just say that, I don't know. I think that a group of Macromedia nerds were trying to cook up an error message that sounded more ominous than 'Java null pointer exception'. You know...something to strike fear into the e

RE: Aaack! What does this error message mean?

2008-02-20 Thread ColdFusion
Are you referencing a structure object like a inline variable? Something like that would be a good place to start -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 20, 2008 11:55 AM To: CF-Talk Subject: Aaack! What does this error message mean?