RE: Cfif cfelse question

2002-05-20 Thread Adrian Lynch
I'm not really sure of this, but a switch statement will be broken out of once a match/condition has been made.. I think you can have multiple conditions for a block though. Any chance of some code? -Original Message- From: Ben Covington [mailto:[EMAIL PROTECTED]] Sent: 20 May 2002

RE: Cfif cfelse question

2002-05-20 Thread Tony_Petruzzi
is there any other variables distinguishing between a new and an edit? if not you should try passing a type variable that does. Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Ben Covington [mailto:[EMAIL PROTECTED]] Sent:

RE: Cfif cfelse question

2002-05-20 Thread Andre Turrettini
want to show them both? DRE -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 8:53 AM To: CF-Talk Subject: RE: Cfif cfelse question is there any other variables distinguishing between a new and an edit? if not you should try passing a type

RE: Cfif cfelse question

2002-05-20 Thread Ben Covington
the same of for the cfif statement. Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 10:53 AM To: CF-Talk Subject: RE: Cfif cfelse question is there any other variables distinguishing between a new and an edit? if not you should try

RE: Cfif cfelse question

2002-05-20 Thread Timothy Heald
:) Application Development www.schoollink.net -Original Message- From: Andre Turrettini [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 10:58 AM To: CF-Talk Subject: RE: Cfif cfelse question I diferentiate by looking at the id. For a new item, its blank or not defined so isnumeric(id

RE: Cfif cfelse question

2002-05-20 Thread Ben Covington
Turrettini [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 10:58 AM To: CF-Talk Subject: RE: Cfif cfelse question I diferentiate by looking at the id. For a new item, its blank or not defined so isnumeric(id) or isdefined(id) tells you whether your editing or adding the entry. However

RE: Cfif cfelse question

2002-05-20 Thread Ben Covington
: Timothy Heald [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 11:28 AM To: CF-Talk Subject: RE: Cfif cfelse question Are you referring to form reuse? You would like to write one form lets say, if it's new it displays something's different than if it is editing an existing record? We