I understand I was just teasing.  But you got it to work this time.  Perhaps
because my message was in plain text.  The list is set to filter out
attachments, which is how HTML mail is sent, and therefore puts them in the
body as text.  Makes for some pretty ugly messages but hey it saves us from
infection.

--K

-----Original Message-----
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 09, 2000 10:25 AM
To: [EMAIL PROTECTED]
Subject: Re: Multiple value Select


I am using Outlook Express, and have it set up to reply to messages in their
original format, which in this case is HTML, or to compose new messages in
plain text.  For some reason the list is not properly handling the mime
conversion.  To see if perhaps this is fixed, I have changed it to send in
plain text only, regardless of the format of the incoming message. It has
been annoying to me, because other messages besides mine have been turned to
mush.

DC


----- Original Message -----
From: "Chapman, Katrina" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 17:03
Subject: RE: Multiple value Select


> The 3D shouldn't be there.  It's because a very bad David;) is sending
> messages in HTML format, or some format other than plain text.  Just
> remove
> any 3D's you may have copied and it should work.
>
> --K
>
> -----Original Message-----
> From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 8:50 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Multiple value Select
>
>
> OK.  I copied the code into the document.  Now it's not liking the first
> quote in the CFSELECT statement:
>
>      <cfselect name=3D"NewPG" size=3D"3" multiple>
>
> Did I just misunderstand what the 3D represented?  Is there just a
> syntax
> error I'm not seeing.  Tried to find some reference to it in the books I
> have (I assumed it stood for dimension?) with no luck.
>
> TIA,
>
> Athelene
>
> -----Original Message-----
> From: David E. Crawford [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 09, 2000 7:42 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Multiple value Select
>
>
> This is a multi-part message in MIME format.
>
> ------=_NextPart_000_00EF_01C001FF.3F8198C0
> Content-Type: text/plain;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
> RE: Multiple value SelectOk, now we have a bit of information.
>
> Try this:
>
>         <cfselect name=3D"NewPG" size=3D"3" multiple>=20
>           <CFOutput query=3D"GetPG">  <!--- OPENING CFOUTPUT --->=20
>
>               <CFIF
> ListFindNoCase(EditNameQry.PracticeGroup,GetPG.PG)>=20
>                 <CFSET PGSelected =3D "Selected">=20
>             <CFELSE>=20
>         <CFSET PGSelected =3D "">=20
>             </cfif>=20
>            <Option #PGSelected# value=3D"#PG#">#PG#</option>  <!---
> NO=20
> CFOUTPUTS --->=20
>           </cfoutput>  <!--- CLOSING CFOUTPUT --->=20
>         </cfselect>=20
>
>
>
> Change the order of the parameters to the =
> Listfindnocase()/Listcontains() functions.  If EditNameQry.PracticeGroup
> =
> is a comma seperated list and GETPG.PG is a single value, this should =
> work.
>
>
>
> DC
>
>
>
>   ----- Original Message -----=20
>   From: Gieseman, Athelene=20
>   To: '[EMAIL PROTECTED]'=20
>   Sent: Tuesday, August 08, 2000 21:36
>   Subject: RE: Multiple value Select
>
>
>   No.  That field would have multiple items in a comma-delimited format.
> =
>  Not=20
>   even the first option is selected.=20
>
>   Athelene=20
>
>   -----Original Message-----=20
>   From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:33 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   This may be a stupid question but the query EditNameQry is only =
> pulling one=20
>   value for PracticeGroup.  Right?  If not I'm sure that when you
> "view=20
>   source" you'll see that more than one option is "SELECTED".  That will
> =
>
>   confuse the browser and it will stay on the first option.=20
>
>   --K=20
>
>   -----Original Message-----=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 2:04 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   Yo may have a point.. try putting quotes around =
> EditNameQry.PracticeGroup.=20
>
>   Plus, if I replace=20
>
>               <CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)>=20
>   with=20
>
>               <CFIF ListContains(GetPG.PG,"Agribusiness")>=20
>
>   the Agribusiness option is selected.  So I think I'm doing something =
> wrong=20
>   in how I'm using the second parameter of the ListContains.=20
>
>   -----Original Message-----=20
>   From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 4:18 PM=20
>   To: '[EMAIL PROTECTED]'=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   No luck.  I think there's a problem in that the listcontains isn't =
> finding=20
>   any matches.  I can't figure out why.  I display the previously =
> selected=20
>   items in another part of the form and it is identical to the options =
> in the=20
>   database.  There is a comma separating the selected items.  For =
> example, the=20
>   record viewed via SQL shows:  "Agribusiness,Commercial Litigation" =
> (less the=20
>   quotes) in the field.  Both of those practice groups are identically =
> listed=20
>   in the GetPG.PG list.  Yet neither of them are showing up selected in
> =
> the=20
>   control.  Plus, if I replace=20
>
>               <CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)>=20
>   with=20
>
>               <CFIF ListContains(GetPG.PG,"Agribusiness")>=20
>
>   the Agribusiness option is selected.  So I think I'm doing something =
> wrong=20
>   in how I'm using the second parameter of the ListContains.=20
>
>
>
>   Athelene=20
>
>
>
>
>   -----Original Message-----=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 3:00 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   take the cfoutput tags out of the options and put them within the =
> entire=20
>   select tag:=20
>
>           <cfselect name=3D"NewPG" size=3D"3" multiple>=20
>             <CFOutput query=3D"GetPG">  <!--- OPENING CFOUTPUT --->=20
>               <CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)>=20
>                   <CFSET PGSelected =3D "Selected">=20
>               <CFELSE>=20
>           <CFSET PGSelected =3D "">=20
>               </cfif>=20
>              <Option #PGSelected# value=3D"#PG#">#PG#</option>  <!--- NO
> =
>
>   CFOUTPUTS --->=20
>             </cfoutput>  <!--- CLOSING CFOUTPUT --->=20
>           </cfselect>=20
>
>   -----Original Message-----=20
>   From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 3:44 PM=20
>   To: '[EMAIL PROTECTED]'=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   Still no luck.  I also added an rtrim function to each of the fields =
> in that=20
>   line.  And I've tried David's suggestion of using listcontainsnocase.
> =
> Still=20
>   no luck.  I also changed the code this way:=20
>
>   <CFIF =
> listfindnocase(rtrim(getpg.pg),rtrim(EditNameQry.PracticeGroup))>=20
>   <CFSET PGSelected =3D "Selected">=20
>   <CFELSE>=20
>   <CFSET PGSelected =3D "Not Selected">=20
>   </cfif>=20
>   <Option #PGSelected# value=3D"#PG#"><cfoutput>#PG#=20
>   #PGSelected#</cfoutput></option>=20
>
>   so that I would be able to see if the PGSelected was being set at all.
> =
>  When=20
>   I use this code, the output on all of the options has "Not Selected" =
> after=20
>   it.  So I believe the problem is that the listcontains never finds a =
> match.=20
>   I've changed the database from a char to a varchar (based on earlier =
> posts=20
>   about that issue), edited all of the records in the file to eliminate
> =
> any=20
>   extra spaces at the end, used the rtrim function.  And still it's not
> =
> ever=20
>   finding a match.=20
>
>   I appreciate the continuing help!  This one is making me crazy (well,
> =
> more=20
>   crazy than usual.)=20
>
>   Athelene=20
>
>   -----Original Message-----=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 1:34 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   Try replacing the cfloop with cfoutput like so:=20
>
>
>
>   <cfquery datasource=3D"FirmDirectory" name=3D"EditNameQry">=20
>     Select        *=20
>     FROM  Employees=20
>     WHERE ID=3D'#EditGrid.ID#'=20
>   </cfquery>=20
>
>   <cfquery datasource=3D"FirmDirectory" name=3D"GetPG">=20
>     Select        *=20
>     FROM  PracticeGroups=20
>     ORDER BY      PG=20
>   </cfquery>=20
>
>           <cfselect name=3D"NewPG" size=3D"3" multiple>=20
>             <CFOutput query=3D"GetPG">=20
>               <CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)>=20
>                   <CFSET PGSelected =3D "Selected">=20
>               <CFELSE>=20
>           <CFSET PGSelected =3D "">=20
>               </cfif>=20
>              <Option #PGSelected# value=3D"#PG#">#PG#</option>=20
>             </cfoutput>=20
>           </cfselect>=20
>
>   I had the CFLoop in there because i had cfoutputs around it in my =
> code...=20
>   this should do it for you, if not, let me know...=20
>
>
>
>
>
>   -----Original Message-----=20
>   From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 1:03 PM=20
>   To: '[EMAIL PROTECTED]'=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   OK.  I have another application where I do in fact use a table for the
> =
>
>   lookup.  I've tried to use your example and apply it here.  But =
> nothing is=20
>   selected.  My code is as follows:=20
>
>   <cfquery datasource=3D"FirmDirectory" name=3D"EditNameQry">=20
>   Select * from Employees where ID=3D'#EditGrid.ID#'=20
>   </cfquery>=20
>
>   <cfquery datasource=3D"FirmDirectory" name=3D"GetPG">=20
>   Select * from PracticeGroups order by PG=20
>   </cfquery>=20
>
>           <cfselect name=3D"NewPG" size=3D"3" multiple>=20
>                           <CFLoop query=3D"GetPG">=20
>                           <CFIF=20
>   ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)>=20
>                           <CFSET PGSelected =3D "Selected">=20
>                           <CFELSE>=20
>                   <CFSET PGSelected =3D "">=20
>                           </cfif>=20
>                           <Option #PGSelected#=20
>   value=3D"#PG#"><cfoutput>#PG#</cfoutput></option>=20
>                           </cfloop>=20
>                   </cfselect>=20
>
>   Note that if I replace the :  <CFIF=20
>   ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)>=20
>   with:  <CFIF ListContains(GetPG.PG,"Agribusiness")>=20
>
>   Then Agribusiness is in fact selected.  So I'm assuming there's =
> something=20
>   wrong with that one line.  Do you happen to see where I went wrong?=20
>
>   TIA,=20
>
>   Athelene=20
>
>   -----Original Message-----=20
>   From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=20
>   Sent: Tuesday, August 08, 2000 7:44 AM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: RE: Multiple value Select=20
>
>
>
>   I did this sort of thing for an intranet i'm working on with
> selected=20
>   company newsgroups... The best way to do it is with a database of your
> =
>
>   finance types.  This will allow you to updae the select statement =
> without=20
>   changing the hard coding.  So the form will always be right.  Query =
> that=20
>   database and the user database.  In the user database, you will want =
> to save=20
>   a comma delimited list of the finance types they are assigned for.  =
> When you=20
>   bring up the select, you can scroll through all the finance types, and
> =
> if=20
>   the user had any in his/her list, they will set the FinanceSelected =
> variable=20
>   to 'selected.'  if they're not in the list, FinanceSelected will be =
> blank.=20
>
>   Hope this helps...=20
>
>   <CFQuery Name=3D"GetFinances" datasource=3D"#Application.datasource#">
> =
>
>     SELECT        FinanceName=20
>     FROM  tblFinances=20
>     ORDER By      FinanceName=20
>   </CFQuery>=20
>
>   <CFQuery Name=3D"GetCustomer" datasource=3D"#Application.datasource#">
> =
>
>     SELECT        CustomerName,=20
>                   Address,=20
>                   Finances        <!--- This Field is a comma delimited
> =
> list=20
>   of the user's=20
>   finances --->=20
>     FROM  tblCustomers=20
>     WHERE CustomerID =3D #Attributes.CustomerID#=20
>   </cfgquery>=20
>
>
>
>   Finances:<br>=20
>
>   <Select Name=3D"Finances" size=3D"#GetFinances.RecordCount#" multiple>
> =
>
>     <CFLoop query=3D"Finances">=20
>       <CFIF ListContains(GetCustomer.Finances,#FinanceName#)>=20
>         <CFSET FinanceSelected =3D "Selected">=20
>       <CFELSE>=20
>         <CFSET FinanceSelected =3D "">=20
>       </cfif>=20
>       <Option #FiannceSelected# =
> value=3D"#FinanceName#">#FinanceName#</option>=20
>     </cfloop>=20
>   </select>=20
>
>
>
>
>   Mark Armendariz=20
>   Righteous Design=20
>   www.sorighteous.com=20
>   [EMAIL PROTECTED]=20
>
>
>
>   -----Original Message-----=20
>   From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=20
>   Sent: Monday, August 07, 2000 6:34 PM=20
>   To: [EMAIL PROTECTED]=20
>   Subject: Multiple value Select=20
>
>
>
>   I'm trying to set up a CFSELECT using the SELECTED option.  I need to
> =
> have=20
>   the CFSELECT set up as multiple since more than one option is =
> permitted.=20
>   However, I can never seem to get the SELECTED option to properly =
> highlight=20
>   the options that are already stored in the record.  (In other words, I
> =
> want=20
>   to create an edit screen where the previously stored values are =
> preselected=20
>   in this control.)  Any thoughts on what I may be doing wrong?  The =
> code for=20
>   my select follows:  (Note that ViewGrid is a grid from which the
> user=20
>   previously selected this record.  I've also tried doing this from a =
> query=20
>   with the same result - nothing is selected.)=20
>
>   <cfselect name=3D"FinanceType" size=3D"2" =
> selected=3D"#ViewGrid.FinanceType#"=20
>   multiple>=20
>   <option value=3D"Single Family Housing">Single Family Housing</option>
> =
>
>   <option value=3D"501(c)(3)">501(c)(3)</option>=20
>   <option value=3D"Hospital Revenue">Hospital Revenue</option>=20
>   <option value=3D"Leasehold Revenue">Leasehold Revenue</option>=20
>   <option value=3D"Multifamily Housing">Multifamily Housing</option>=20
>   <option value=3D"General Obligation">General Obligation</option>=20
>   <option value=3D"NID">NID</option>=20
>   <option value=3D"Special Obligation">Special Obligation</option>=20
>   <option value=3D"Industrial Development">Industrial =
> Development</option>=20
>   <option value=3D"TIF">TIF</option>=20
>   <option value=3D"TDD/TC">TDD/TC</option>=20
>   <option value=3D"Other">Other</option>=20
>   </cfselect>=20
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>   =
> ------------------------------------------------------------------------
> -=
> ---=20
>   --=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit=20
>   =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or=20
>   send a message to [EMAIL PROTECTED] with 'unsubscribe'
> =
> in=20
>   the body.=20
>   =
> ------------------------------------------------------------------------
> -=
> -----=20
>   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/=20
>   To Unsubscribe visit =
> http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dlists/cf_t
> a=
> lk or send a message to [EMAIL PROTECTED] with =
> 'unsubscribe' in the body.
>
>
> ------=_NextPart_000_00EF_01C001FF.3F8198C0
> Content-Type: text/html;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML><HEAD><TITLE>RE: Multiple value Select</TITLE>
> <META content=3D"text/html; charset=3Dwindows-1252" =
> http-equiv=3DContent-Type>
> <META content=3D"MSHTML 5.00.3018.900" name=3DGENERATOR>
> <STYLE></STYLE>
> </HEAD>
> <BODY bgColor=3D#ffffff>
> <DIV><FONT face=3DArial size=3D2>Ok, now we have a bit of =
> information.</FONT></DIV>
> <DIV>&nbsp;</DIV>
> <DIV><FONT face=3DArial size=3D2>Try this:</FONT></DIV>
> <DIV>&nbsp;</DIV>
> <DIV><FONT face=3DArial size=3D2>
> <P><FONT size=3D2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;cfselect =
> name=3D"NewPG"=20
> size=3D"3" multiple&gt;</FONT> =
> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
> <FONT size=3D2>&nbsp; &lt;CFOutput query=3D"GetPG"&gt;&nbsp; &lt;!--- =
> OPENING=20
> CFOUTPUT ---&gt;</FONT> </P>
> <P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20
> size=3D2>&nbsp;&nbsp;&nbsp; &lt;CFIF=20
> ListFindNoCase(EditNameQry.PracticeGroup,GetPG.PG)&gt;</FONT>=20
> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT size=3D2>&lt;CFSET =
> PGSelected =3D=20
> "Selected"&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
> <FONT=20
> size=3D2>&nbsp;&nbsp;&nbsp; &lt;CFELSE&gt;</FONT> <BR><FONT=20
> size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &lt;CFSET PGSelected
> =3D=20
> ""&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
> size=3D2>&nbsp;&nbsp;&nbsp; &lt;/cfif&gt;</FONT>=20
> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;=20
> &lt;Option #PGSelected# value=3D"#PG#"&gt;#PG#&lt;/option&gt;&nbsp; =
> &lt;!---=20
> NO</FONT> <BR><FONT size=3D2>CFOUTPUTS ---&gt;</FONT> <BR><FONT=20
> size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; =
> &lt;/cfoutput&gt;&nbsp;=20
> &lt;!--- CLOSING CFOUTPUT ---&gt;</FONT>=20
> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
> size=3D2>&lt;/cfselect&gt;</FONT> </P>
> <P>&nbsp;</P>
> <P>Change the order of the parameters to the =
> Listfindnocase()/Listcontains()=20
> functions.&nbsp; If EditNameQry.PracticeGroup is a comma seperated list
> =
> and=20
> GETPG.PG is a single value, this should work.</P>
> <P>&nbsp;</P>
> <P>DC</P>
> <P>&nbsp;</P></FONT></DIV>
> <BLOCKQUOTE=20
> style=3D"BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT:
> =
> 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">
>   <DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV>
>   <DIV=20
>   style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =
> black"><B>From:</B>=20
>   <A href=3D"mailto:[EMAIL PROTECTED]" =
> [EMAIL PROTECTED]>Gieseman,=20
>   Athelene</A> </DIV>
>   <DIV style=3D"FONT: 10pt arial"><B>To:</B> <A=20
>   href=3D"mailto:'[EMAIL PROTECTED]'"=20
>   [EMAIL PROTECTED]>'[EMAIL PROTECTED]'</A> =
> </DIV>
>   <DIV style=3D"FONT: 10pt arial"><B>Sent:</B> Tuesday, August 08,
> 2000=20
> 21:36</DIV>
>   <DIV style=3D"FONT: 10pt arial"><B>Subject:</B> RE: Multiple value =
> Select</DIV>
>   <DIV><BR></DIV>
>   <P><FONT size=3D2>No.&nbsp; That field would have multiple items in
> a=20
>   comma-delimited format.&nbsp; Not</FONT> <BR><FONT size=3D2>even the =
> first=20
>   option is selected.</FONT> </P>
>   <P><FONT size=3D2>Athelene</FONT> </P>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From:=20
>   Chapman, Katrina [<A=20
>   href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</FONT>
> =
> <BR><FONT=20
>   size=3D2>Sent: Tuesday, August 08, 2000 4:33 PM</FONT> <BR><FONT =
> size=3D2>To: <A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><
> /=
> FONT>=20
>   <BR><FONT size=3D2>Subject: RE: Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>This may be a stupid question but the query =
> EditNameQry is=20
>   only pulling one</FONT> <BR><FONT size=3D2>value for =
> PracticeGroup.&nbsp;=20
>   Right?&nbsp; If not I'm sure that when you "view</FONT> <BR><FONT=20
>   size=3D2>source" you'll see that more than one option is =
> "SELECTED".&nbsp; That=20
>   will</FONT> <BR><FONT size=3D2>confuse the browser and it will stay on
> =
> the first=20
>   option.</FONT> </P>
>   <P><FONT size=3D2>--K</FONT> </P>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From: Mark=20
>   Armendariz [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</F
> O=
> NT>=20
>   <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 2:04 PM</FONT> =
> <BR><FONT=20
>   size=3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT =
> size=3D2>Subject: RE:=20
>   Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>Yo may have a point.. try putting quotes around=20
>   EditNameQry.PracticeGroup.</FONT> </P>
>   <P><FONT size=3D2>Plus, if I replace</FONT> </P>
>   <P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>with</FONT> </P>
>   <P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;CFIF ListContains(GetPG.PG,"Agribusiness")&gt;</FONT> </P>
>   <P><FONT size=3D2>the Agribusiness option is selected.&nbsp; So I =
> think I'm=20
>   doing something wrong</FONT> <BR><FONT size=3D2>in how I'm using the =
> second=20
>   parameter of the ListContains.</FONT> </P>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From:=20
>   Gieseman, Athelene [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]<
> /=
> FONT>=20
>   <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 4:18 PM</FONT> =
> <BR><FONT=20
>   size=3D2>To: '[EMAIL PROTECTED]'</FONT> <BR><FONT =
> size=3D2>Subject: RE:=20
>   Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>No luck.&nbsp; I think there's a problem in that the
> =
>
>   listcontains isn't finding</FONT> <BR><FONT size=3D2>any =
> matches.&nbsp; I can't=20
>   figure out why.&nbsp; I display the previously selected</FONT> =
> <BR><FONT=20
>   size=3D2>items in another part of the form and it is identical to the
> =
> options in=20
>   the</FONT> <BR><FONT size=3D2>database.&nbsp; There is a comma =
> separating the=20
>   selected items.&nbsp; For example, the</FONT> <BR><FONT =
> size=3D2>record viewed=20
>   via SQL shows:&nbsp; "Agribusiness,Commercial Litigation" (less =
> the</FONT>=20
>   <BR><FONT size=3D2>quotes) in the field.&nbsp; Both of those practice
> =
> groups are=20
>   identically listed</FONT> <BR><FONT size=3D2>in the GetPG.PG =
> list.&nbsp; Yet=20
>   neither of them are showing up selected in the</FONT> <BR><FONT=20
>   size=3D2>control.&nbsp; Plus, if I replace</FONT> </P>
>   <P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;CFIF ListContains(GetPG.PG,EditNameQry.PracticeGroup)&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>with</FONT> </P>
>   <P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;CFIF ListContains(GetPG.PG,"Agribusiness")&gt;</FONT> </P>
>   <P><FONT size=3D2>the Agribusiness option is selected.&nbsp; So I =
> think I'm=20
>   doing something wrong</FONT> <BR><FONT size=3D2>in how I'm using the =
> second=20
>   parameter of the ListContains.</FONT> </P><BR>
>   <P><FONT size=3D2>Athelene</FONT> </P><BR><BR>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From: Mark=20
>   Armendariz [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</F
> O=
> NT>=20
>   <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 3:00 PM</FONT> =
> <BR><FONT=20
>   size=3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT =
> size=3D2>Subject: RE:=20
>   Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>take the cfoutput tags out of the options and put =
> them within=20
>   the entire</FONT> <BR><FONT size=3D2>select tag:</FONT> </P>
>   <P><FONT size=3D2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
> &lt;cfselect=20
>   name=3D"NewPG" size=3D"3" multiple&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT
> size=3D2>&nbsp;=20
>   &lt;CFOutput query=3D"GetPG"&gt;&nbsp; &lt;!--- OPENING CFOUTPUT =
> ---&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;CFIF
> ListContains(GetPG.PG,EditNameQry.PracticeGroup)&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT size=3D2>&lt;CFSET =
> PGSelected =3D=20
>   "Selected"&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
> <FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp; &lt;CFELSE&gt;</FONT> <BR><FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &lt;CFSET PGSelected =
> =3D=20
>   ""&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp; &lt;/cfif&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;=20
>   &lt;Option #PGSelected# value=3D"#PG#"&gt;#PG#&lt;/option&gt;&nbsp; =
> &lt;!---=20
>   NO</FONT> <BR><FONT size=3D2>CFOUTPUTS ---&gt;</FONT> <BR><FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;=20
>   &lt;/cfoutput&gt;&nbsp; &lt;!--- CLOSING CFOUTPUT ---&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
>   size=3D2>&lt;/cfselect&gt;</FONT> </P>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From:=20
>   Gieseman, Athelene [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]<
> /=
> FONT>=20
>   <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 3:44 PM</FONT> =
> <BR><FONT=20
>   size=3D2>To: '[EMAIL PROTECTED]'</FONT> <BR><FONT =
> size=3D2>Subject: RE:=20
>   Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>Still no luck.&nbsp; I also added an rtrim function
> =
> to each of=20
>   the fields in that</FONT> <BR><FONT size=3D2>line.&nbsp; And I've =
> tried David's=20
>   suggestion of using listcontainsnocase.&nbsp; Still</FONT> <BR><FONT =
> size=3D2>no=20
>   luck.&nbsp; I also changed the code this way:</FONT> </P>
>   <P><FONT size=3D2>&lt;CFIF=20
>   =
> listfindnocase(rtrim(getpg.pg),rtrim(EditNameQry.PracticeGroup))&gt;</FO
> N=
> T>=20
>   <BR><FONT size=3D2>&lt;CFSET PGSelected =3D "Selected"&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>&lt;CFELSE&gt;</FONT> <BR><FONT size=3D2>&lt;CFSET PGSelected
> =
> =3D "Not=20
>   Selected"&gt;</FONT> <BR><FONT size=3D2>&lt;/cfif&gt;</FONT> <BR><FONT
> =
>
>   size=3D2>&lt;Option #PGSelected# =
> value=3D"#PG#"&gt;&lt;cfoutput&gt;#PG#</FONT>=20
>   <BR><FONT size=3D2>#PGSelected#&lt;/cfoutput&gt;&lt;/option&gt;</FONT>
> =
> </P>
>   <P><FONT size=3D2>so that I would be able to see if the PGSelected was
> =
> being set=20
>   at all.&nbsp; When</FONT> <BR><FONT size=3D2>I use this code, the =
> output on all=20
>   of the options has "Not Selected" after</FONT> <BR><FONT =
> size=3D2>it.&nbsp; So I=20
>   believe the problem is that the listcontains never finds a =
> match.</FONT>=20
>   <BR><FONT size=3D2>I've changed the database from a char to a varchar
> =
> (based on=20
>   earlier posts</FONT> <BR><FONT size=3D2>about that issue), edited all
> =
> of the=20
>   records in the file to eliminate any</FONT> <BR><FONT size=3D2>extra =
> spaces at=20
>   the end, used the rtrim function.&nbsp; And still it's not ever</FONT>
> =
>
>   <BR><FONT size=3D2>finding a match.</FONT> </P>
>   <P><FONT size=3D2>I appreciate the continuing help!&nbsp; This one is
> =
> making me=20
>   crazy (well, more</FONT> <BR><FONT size=3D2>crazy than usual.)</FONT>
> =
> </P>
>   <P><FONT size=3D2>Athelene</FONT> </P>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From: Mark=20
>   Armendariz [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</F
> O=
> NT>=20
>   <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 1:34 PM</FONT> =
> <BR><FONT=20
>   size=3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT =
> size=3D2>Subject: RE:=20
>   Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>Try replacing the cfloop with cfoutput like =
> so:</FONT>=20
> </P><BR>
>   <P><FONT size=3D2>&lt;cfquery datasource=3D"FirmDirectory"=20
>   name=3D"EditNameQry"&gt;</FONT> <BR><FONT size=3D2>&nbsp;=20
>   Select&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</FONT> <BR><FONT=20
>   size=3D2>&nbsp; FROM&nbsp; Employees</FONT> <BR><FONT size=3D2>&nbsp;
> =
> WHERE=20
>   ID=3D'#EditGrid.ID#'</FONT> <BR><FONT size=3D2>&lt;/cfquery&gt;</FONT>
> =
> </P>
>   <P><FONT size=3D2>&lt;cfquery datasource=3D"FirmDirectory" =
> name=3D"GetPG"&gt;</FONT>=20
>   <BR><FONT size=3D2>&nbsp; =
> Select&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   *</FONT> <BR><FONT size=3D2>&nbsp; FROM&nbsp; PracticeGroups</FONT> =
> <BR><FONT=20
>   size=3D2>&nbsp; ORDER BY&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PG</FONT> =
> <BR><FONT=20
>   size=3D2>&lt;/cfquery&gt;</FONT> </P>
>   <P><FONT size=3D2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
> &lt;cfselect=20
>   name=3D"NewPG" size=3D"3" multiple&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT
> size=3D2>&nbsp;=20
>   &lt;CFOutput query=3D"GetPG"&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;CFIF
> ListContains(GetPG.PG,EditNameQry.PracticeGroup)&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT size=3D2>&lt;CFSET =
> PGSelected =3D=20
>   "Selected"&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
> <FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp; &lt;CFELSE&gt;</FONT> <BR><FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &lt;CFSET PGSelected =
> =3D=20
>   ""&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp; &lt;/cfif&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&nbsp;&nbsp;=20
>   &lt;Option #PGSelected# value=3D"#PG#"&gt;#PG#&lt;/option&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;=20
>   &lt;/cfoutput&gt;</FONT> =
> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
>   size=3D2>&lt;/cfselect&gt;</FONT> </P>
>   <P><FONT size=3D2>I had the CFLoop in there because i had cfoutputs =
> around it in=20
>   my code...</FONT> <BR><FONT size=3D2>this should do it for you, if =
> not, let me=20
>   know...</FONT> </P><BR><BR><BR>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From:=20
>   Gieseman, Athelene [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]<
> /=
> FONT>=20
>   <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 1:03 PM</FONT> =
> <BR><FONT=20
>   size=3D2>To: '[EMAIL PROTECTED]'</FONT> <BR><FONT =
> size=3D2>Subject: RE:=20
>   Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>OK.&nbsp; I have another application where I do in =
> fact use a=20
>   table for the</FONT> <BR><FONT size=3D2>lookup.&nbsp; I've tried to =
> use your=20
>   example and apply it here.&nbsp; But nothing is</FONT> <BR><FONT=20
>   size=3D2>selected.&nbsp; My code is as follows:</FONT> </P>
>   <P><FONT size=3D2>&lt;cfquery datasource=3D"FirmDirectory"=20
>   name=3D"EditNameQry"&gt;</FONT> <BR><FONT size=3D2>Select * from =
> Employees where=20
>   ID=3D'#EditGrid.ID#'</FONT> <BR><FONT size=3D2>&lt;/cfquery&gt;</FONT>
> =
> </P>
>   <P><FONT size=3D2>&lt;cfquery datasource=3D"FirmDirectory" =
> name=3D"GetPG"&gt;</FONT>=20
>   <BR><FONT size=3D2>Select * from PracticeGroups order by PG</FONT> =
> <BR><FONT=20
>   size=3D2>&lt;/cfquery&gt;</FONT> </P>
>   <P><FONT size=3D2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
> &lt;cfselect=20
>   name=3D"NewPG" size=3D"3" multiple&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT
> size=3D2>&lt;CFLoop=20
>   query=3D"GetPG"&gt;</FONT> =
> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&lt;CFIF</FONT>=20
>   <BR><FONT =
> size=3D2>ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)&gt;</FONT>=2
> 0
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT size=3D2>&lt;CFSET =
> PGSelected =3D=20
>   "Selected"&gt;</FONT>
> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&lt;CFELSE&gt;</FONT>=20
>   <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CFSET PGSelected =3D=20
>   ""&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&lt;/cfif&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT
> size=3D2>&lt;Option=20
>   #PGSelected#</FONT> <BR><FONT=20
>   =
> size=3D2>value=3D"#PG#"&gt;&lt;cfoutput&gt;#PG#&lt;/cfoutput&gt;&lt;/opt
> i=
> on&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>&lt;/cfloop&gt;</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
>   size=3D2>&lt;/cfselect&gt;</FONT> </P>
>   <P><FONT size=3D2>Note that if I replace the :&nbsp; &lt;CFIF</FONT> =
> <BR><FONT=20
>   size=3D2>ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)&gt;</FONT>
> =
> <BR><FONT=20
>   size=3D2>with:&nbsp; &lt;CFIF =
> ListContains(GetPG.PG,"Agribusiness")&gt;</FONT>=20
>   </P>
>   <P><FONT size=3D2>Then Agribusiness is in fact selected.&nbsp; So I'm
> =
> assuming=20
>   there's something</FONT> <BR><FONT size=3D2>wrong with that one =
> line.&nbsp; Do=20
>   you happen to see where I went wrong?</FONT> </P>
>   <P><FONT size=3D2>TIA,</FONT> </P>
>   <P><FONT size=3D2>Athelene</FONT> </P>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From: Mark=20
>   Armendariz [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</F
> O=
> NT>=20
>   <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 7:44 AM</FONT> =
> <BR><FONT=20
>   size=3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT =
> size=3D2>Subject: RE:=20
>   Multiple value Select</FONT> </P><BR>
>   <P><FONT size=3D2>I did this sort of thing for an intranet i'm working
> =
> on with=20
>   selected</FONT> <BR><FONT size=3D2>company newsgroups... The best way
> =
> to do it=20
>   is with a database of your</FONT> <BR><FONT size=3D2>finance =
> types.&nbsp; This=20
>   will allow you to updae the select statement without</FONT>
> <BR><FONT=20
>   size=3D2>changing the hard coding.&nbsp; So the form will always be =
> right.&nbsp;=20
>   Query that</FONT> <BR><FONT size=3D2>database and the user =
> database.&nbsp; In=20
>   the user database, you will want to save</FONT> <BR><FONT size=3D2>a =
> comma=20
>   delimited list of the finance types they are assigned for.&nbsp;
> When=20
>   you</FONT> <BR><FONT size=3D2>bring up the select, you can scroll =
> through all=20
>   the finance types, and if</FONT> <BR><FONT size=3D2>the user had any =
> in his/her=20
>   list, they will set the FinanceSelected variable</FONT> <BR><FONT =
> size=3D2>to=20
>   'selected.'&nbsp; if they're not in the list, FinanceSelected will
> be=20
>   blank.</FONT> </P>
>   <P><FONT size=3D2>Hope this helps...</FONT> </P>
>   <P><FONT size=3D2>&lt;CFQuery Name=3D"GetFinances"=20
>   datasource=3D"#Application.datasource#"&gt;</FONT> <BR><FONT =
> size=3D2>&nbsp;=20
>   SELECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FinanceName</FONT> =
> <BR><FONT=20
>   size=3D2>&nbsp; FROM&nbsp; tblFinances</FONT> <BR><FONT =
> size=3D2>&nbsp; ORDER=20
>   By&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FinanceName</FONT> <BR><FONT=20
>   size=3D2>&lt;/CFQuery&gt;</FONT> </P>
>   <P><FONT size=3D2>&lt;CFQuery Name=3D"GetCustomer"=20
>   datasource=3D"#Application.datasource#"&gt;</FONT> <BR><FONT =
> size=3D2>&nbsp;=20
>   SELECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> CustomerName,</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
> size=3D2>Address,</FONT>=20
>   <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
>   size=3D2>Finances&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--- =
> This Field=20
>   is a comma delimited list</FONT> <BR><FONT size=3D2>of the =
> user's</FONT>=20
>   <BR><FONT size=3D2>finances ---&gt;</FONT> <BR><FONT size=3D2>&nbsp; =
> FROM&nbsp;=20
>   tblCustomers</FONT> <BR><FONT size=3D2>&nbsp; WHERE CustomerID =3D=20
>   #Attributes.CustomerID#</FONT> <BR><FONT =
> size=3D2>&lt;/cfgquery&gt;</FONT>=20
>   </P><BR>
>   <P><FONT size=3D2>Finances:&lt;br&gt;</FONT> </P>
>   <P><FONT size=3D2>&lt;Select Name=3D"Finances" =
> size=3D"#GetFinances.RecordCount#"=20
>   multiple&gt;</FONT> <BR><FONT size=3D2>&nbsp; &lt;CFLoop=20
>   query=3D"Finances"&gt;</FONT> <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp; =
> &lt;CFIF=20
>   ListContains(GetCustomer.Finances,#FinanceName#)&gt;</FONT>
> <BR><FONT=20
>   size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CFSET FinanceSelected
> =3D=20
>   "Selected"&gt;</FONT> <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;CFELSE&gt;</FONT> <BR><FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
>   &lt;CFSET FinanceSelected =3D ""&gt;</FONT> <BR><FONT =
> size=3D2>&nbsp;&nbsp;&nbsp;=20
>   &lt;/cfif&gt;</FONT> <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp;
> &lt;Option=20
>   #FiannceSelected# =
> value=3D"#FinanceName#"&gt;#FinanceName#&lt;/option&gt;</FONT>=20
>   <BR><FONT size=3D2>&nbsp; &lt;/cfloop&gt;</FONT> <BR><FONT=20
>   size=3D2>&lt;/select&gt;</FONT> </P><BR><BR>
>   <P><FONT size=3D2>Mark Armendariz</FONT> <BR><FONT
> size=3D2>Righteous=20
>   Design</FONT> <BR><FONT size=3D2>www.sorighteous.com</FONT>
> <BR><FONT=20
>   size=3D2>[EMAIL PROTECTED]</FONT> </P><BR>
>   <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
> size=3D2>From:=20
>   Gieseman, Athelene [<A=20
>   =
> href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]<
> /=
> FONT>=20
>   <BR><FONT size=3D2>Sent: Monday, August 07, 2000 6:34 PM</FONT> =
> <BR><FONT=20
>   size=3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT =
> size=3D2>Subject: Multiple=20
>   value Select</FONT> </P><BR>
>   <P><FONT size=3D2>I'm trying to set up a CFSELECT using the
> SELECTED=20
>   option.&nbsp; I need to have</FONT> <BR><FONT size=3D2>the CFSELECT =
> set up as=20
>   multiple since more than one option is permitted.</FONT> <BR><FONT=20
>   size=3D2>However, I can never seem to get the SELECTED option to =
> properly=20
>   highlight</FONT> <BR><FONT size=3D2>the options that are already =
> stored in the=20
>   record.&nbsp; (In other words, I want</FONT> <BR><FONT size=3D2>to =
> create an=20
>   edit screen where the previously stored values are
> preselected</FONT>=20
>   <BR><FONT size=3D2>in this control.)&nbsp; Any thoughts on what I may
> =
> be doing=20
>   wrong?&nbsp; The code for</FONT> <BR><FONT size=3D2>my select =
> follows:&nbsp;=20
>   (Note that ViewGrid is a grid from which the user</FONT> <BR><FONT=20
>   size=3D2>previously selected this record.&nbsp; I've also tried doing
> =
> this from=20
>   a query</FONT> <BR><FONT size=3D2>with the same result - nothing is=20
>   selected.)</FONT> </P>
>   <P><FONT size=3D2>&lt;cfselect name=3D"FinanceType" size=3D"2"=20
>   selected=3D"#ViewGrid.FinanceType#"</FONT> <BR><FONT =
> size=3D2>multiple&gt;</FONT>=20
>   <BR><FONT size=3D2>&lt;option value=3D"Single Family =
> Housing"&gt;Single Family=20
>   Housing&lt;/option&gt;</FONT> <BR><FONT size=3D2>&lt;option=20
>   value=3D"501(c)(3)"&gt;501(c)(3)&lt;/option&gt;</FONT> <BR><FONT=20
>   size=3D2>&lt;option value=3D"Hospital Revenue"&gt;Hospital=20
>   Revenue&lt;/option&gt;</FONT> <BR><FONT size=3D2>&lt;option =
> value=3D"Leasehold=20
>   Revenue"&gt;Leasehold Revenue&lt;/option&gt;</FONT> <BR><FONT=20
>   size=3D2>&lt;option value=3D"Multifamily Housing"&gt;Multifamily=20
>   Housing&lt;/option&gt;</FONT> <BR><FONT size=3D2>&lt;option =
> value=3D"General=20
>   Obligation"&gt;General Obligation&lt;/option&gt;</FONT> <BR><FONT=20
>   size=3D2>&lt;option value=3D"NID"&gt;NID&lt;/option&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>&lt;option value=3D"Special Obligation"&gt;Special=20
>   Obligation&lt;/option&gt;</FONT> <BR><FONT size=3D2>&lt;option =
> value=3D"Industrial=20
>   Development"&gt;Industrial Development&lt;/option&gt;</FONT> <BR><FONT
> =
>
>   size=3D2>&lt;option value=3D"TIF"&gt;TIF&lt;/option&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>&lt;option value=3D"TDD/TC"&gt;TDD/TC&lt;/option&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>&lt;option value=3D"Other"&gt;Other&lt;/option&gt;</FONT> =
> <BR><FONT=20
>   size=3D2>&lt;/cfselect&gt;</FONT> <BR><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> </P>
>   <P><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> =
> <BR><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> </P>
>   <P><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> =
> <BR><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> </P>
>   <P><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> =
> <BR><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> </P>
>   <P><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> =
> <BR><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> ------------</FONT>=20
>   <BR><FONT size=3D2>--</FONT> <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit</FONT> <BR><FONT
> size=3D2><A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or</FONT> <BR><FONT size=3D2>send a message to =
> [EMAIL PROTECTED]=20
>   with 'unsubscribe' in</FONT> <BR><FONT size=3D2>the body.</FONT> =
> <BR><FONT=20
>   =
> size=3D2>---------------------------------------------------------------
> -=
> --------------</FONT>=20
>   <BR><FONT size=3D2>Archives: <A=20
>   href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=20
>   =
> target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/</
> A=
> ></FONT>=20
>   <BR><FONT size=3D2>To Unsubscribe visit <A=20
>   =
> href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&amp;body=
> 3D=
> lists/cf_talk"=20
>   =
> target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&a
> m=
> p;body=3Dlists/cf_talk</A>=20
>   or send a message to [EMAIL PROTECTED] with =
> 'unsubscribe' in=20
>   the body.</FONT></P></BLOCKQUOTE></BODY></HTML>
>
> ------=_NextPart_000_00EF_01C001FF.3F8198C0--
>
> ------------------------------------------------------------------------
> ----
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> the body.
> ------------------------------------------------------------------------
> ----
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> the body.
> ------------------------------------------------------------------------
> ------
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
>

----------------------------------------------------------------------------
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to