Re: What is wrong with this function

2006-12-14 Thread arthur amanyire
i am developing a real estate app and i have 3 submits(insert,update and delete ) on one cf flash form can some one give me code to manipulate the data base with these submits without using flash remoting ~| Create robust

RE: What is wrong with this function

2006-12-14 Thread Coldfusion
-Talk Subject: Re: What is wrong with this function i am developing a real estate app and i have 3 submits(insert,update and delete ) on one cf flash form can some one give me code to manipulate the data base with these submits without using flash remoting

RE: What is wrong with this function (A thread of my very own)

2006-12-14 Thread Bobby Hartsfield
://acoderslife.com -Original Message- From: arthur amanyire [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 4:16 AM To: CF-Talk Subject: Re: What is wrong with this function i am developing a real estate app and i have 3 submits(insert,update and delete ) on one cf flash form can

What is wrong with this function

2006-12-13 Thread Bruce Sorge
I have a CFC that holds the bulk of my queries. Everything was working great until I added another function. Now when I open my CFC in the browser to check everything out, I get the message Cant Load a Null. The examples below are a function that works and then the new function. Also, on the

Re: What is wrong with this function

2006-12-13 Thread Robertson-Ravo, Neil (RX)
14 00:15:27 2006 Subject: What is wrong with this function I have a CFC that holds the bulk of my queries. Everything was working great until I added another function. Now when I open my CFC in the browser to check everything out, I get the message Cant Load a Null. The examples below

Re: What is wrong with this function

2006-12-13 Thread Charlie Griefer
in what scope do #username# and #password# (the defaults for the required arguments) exist? On 12/13/06, Bruce Sorge [EMAIL PROTECTED] wrote: I have a CFC that holds the bulk of my queries. Everything was working great until I added another function. Now when I open my CFC in the browser to

Re: What is wrong with this function

2006-12-13 Thread Doug Brown
What happens if you simply lose the deafult attribute of the cfargument? You should be setting that on your cfinvoke anyhow, should you not? cfinvoke component=this.that.thisAgain method=myMethod username=#username# password=#password#

RE: What is wrong with this function

2006-12-13 Thread Bruce Sorge
are not VAR'd and are working fine? -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 4:20 PM To: CF-Talk Subject: Re: What is wrong with this function VAR your variables etc! ! :-) This e-mail is from Reed Exhibitions

RE: What is wrong with this function

2006-12-13 Thread Bruce Sorge
They are form variables from the login form. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 4:27 PM To: CF-Talk Subject: Re: What is wrong with this function in what scope do #username# and #password# (the defaults for the required

Re: What is wrong with this function

2006-12-13 Thread Charlie Griefer
] wrote: They are form variables from the login form. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 4:27 PM To: CF-Talk Subject: Re: What is wrong with this function in what scope do #username# and #password# (the defaults

RE: What is wrong with this function

2006-12-13 Thread Bobby Hartsfield
-Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 13, 2006 7:15 PM To: CF-Talk Subject: What is wrong with this function I have a CFC that holds the bulk of my queries. Everything was working great until I added another function. Now when I open my CFC

RE: What is wrong with this function

2006-12-13 Thread Bruce Sorge
PROTECTED] Sent: Wednesday, December 13, 2006 8:09 PM To: CF-Talk Subject: Re: What is wrong with this function i don't believe the form scope is available to the CFC. Does the form submit directly to the CFC or to a page that calls the CFC? Ideally, you're not supposed to reference outside scopes