[ACFUG Discuss] Join in QofQ

2007-01-23 Thread Chris C. Cooper
orkshops.workshop_id = getWorkshoptotals.workshop_id Any ideas how I can do this? <http://www.cooperebusiness.com/> --------- Chris C. Cooper Cooper e.Business Solutions Atlanta, Georgia 404.691.4816 Cooper e.business Solutions - http://www

RE: [ACFUG Discuss] SOT: Do you know any local designers?

2007-01-12 Thread Chris C. Cooper
I can co-sign on Garcan, I've used them on an interface design and they did an excellent job. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Howard Fore Sent: Friday, January 12, 2007 8:53 AM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] SOT: Do

RE: [ACFUG Discuss] XML & CF

2007-01-02 Thread Chris C. Cooper
Thanks for this, I'll spend some time reading.. <http://www.cooperebusiness.com/> ----- Chris C. Cooper Cooper e.Business Solutions Atlanta, Georgia 404.691.4816 Cooper e.business Solutions - http://www.cooperebusines

RE: [ACFUG Discuss] XML & CF

2007-01-02 Thread Chris C. Cooper
What is a practical use for XML? What kind of situation would call for using it? _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Powell Sent: Monday, January 01, 2007 8:54 PM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] XML & CF Also, I would sugges

RE: [ACFUG Discuss] Petshop

2006-11-29 Thread Chris C. Cooper
This may be of some help. http://br.sys-con.com/read/176194.htm _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom McNeer Sent: Wednesday, November 29, 2006 2:50 PM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] Petshop Hi Seth, As I remember,

[ACFUG Discuss] SQL trace

2006-10-12 Thread Chris C. Cooper
the users signoff on the form then go and code CRUD functions. This takes a very long time and is very tedious. The code generators I’ve see seem llike CFCPowertools seem to over complicate this. Does anyone have a better process?         - Chris C

RE: [ACFUG Discuss] Form Validation

2006-09-27 Thread Chris C. Cooper
CF7           - Chris C. Cooper Cooper e.Business Solutions Atlanta, Georgia 404.691.4816   Cooper e.business Solutions – http://www.cooperebusiness.com   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Teddy

RE: [ACFUG Discuss] Form Validation

2006-09-27 Thread Chris C. Cooper
"Please Enter a Student ID"      type="text"      id="user_student_id"     />     - Chris C. Cooper Cooper e.Business Solutions Atlanta, Georgia 404.6

RE: [ACFUG Discuss] Form Validation

2006-09-27 Thread Chris C. Cooper
                - Chris C. Cooper Cooper e.Business Solutions Atlanta, Georgia 404.691.4816   Cooper e.business Solutions – http://www.cooperebusiness.com   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [ACFUG Discuss] Form Validation

2006-09-27 Thread Chris C. Cooper
? Most forms work well with a submit validation, but highly recommended with any validation you choose that you then in turn validate yet again on the action page of the form. Teddy On 9/27/06, Chris C. Cooper <[EMAIL PROTECTED]> wrote: Any reason why my CF form validation only wor

[ACFUG Discuss] Form Validation

2006-09-27 Thread Chris C. Cooper
     value="#getuser.user_student_id#"     />         - Chris C. Cooper Cooper e.Business Solutions Atlanta, Georgia 404.691.4816   Cooper e.business Solutions – http://www.cooperebusiness.com   - To uns

RE: [ACFUG Discuss] Sum/CFSET

2006-09-22 Thread Chris C. Cooper
The problem I had with this is if I did this... SELECT sum(column_name,column_name2, column_name3) as sum_value FROM Table GroupBy column_name It wanted the additional column names to be in the group by - Chris C. Cooper Cooper e.Business Solutions

RE: [ACFUG Discuss] Sum/CFSET

2006-09-22 Thread Chris C. Cooper
Thanks, you are correct about still getting the NULL value as the total. This is the solutions here…   SELECT mySum = ISNULL(col1, 0) + ISNULL(col2, 0) + ISNULL(col3, 0)           - Chris C. Cooper Cooper e.Business Solutions Atlanta

RE: [ACFUG Discuss] Sum/CFSET

2006-09-22 Thread Chris C. Cooper
  This solution worked the best, letting the database do the work. I just can not get the SUM function to work correctly, but this is a nice work around.   THANKS!   Try SELECT value1 + value2 + value3 as daSum FROM yourtable DK On 9/21/06, Chris C. Cooper < [EM

[ACFUG Discuss] Sum/CFSET

2006-09-21 Thread Chris C. Cooper
seems wrong and will probably take a performance hit on the page.   What do I need to do?   TIA             - Chris C. Cooper Cooper e.Business Solutions Atlanta, Georgia 404.691.4816   Cooper e.business Solutions – http://www.cooperebusiness.com