This is a multi-part message in MIME format.

------=_NextPart_000_025D_01C0015C.FC0970B0
Content-Type: text/plain;
        charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

RE: Multiple value SelectTry

listfindnocase(getpg.pg,EditNameQry.PracticeGroup)

and see if that works.
  ----- Original Message -----=20
  From: Gieseman, Athelene=20
  To: '[EMAIL PROTECTED]'=20
  Sent: Tuesday, August 08, 2000 17:09
  Subject: RE: Multiple value Select


  Thanks for the quick response.  Tried that and no luck. =20

  Athelene=20

  -----Original Message-----=20
  From: David E. Crawford [mailto:[EMAIL PROTECTED]]=20
  Sent: Tuesday, August 08, 2000 12:10 PM=20
  To: [EMAIL PROTECTED]=20
  Subject: Re: Multiple value Select=20



  This is a multi-part message in MIME format.=20

  ------=3D_NextPart_000_0242_01C0015B.7347C930=20
  Content-Type: text/plain;=20
          charset=3D"Windows-1252"=20
  Content-Transfer-Encoding: quoted-printable=20

  RE: Multiple value SelectSee if changing:=20

  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=20

  to=20

  ListContains(GetPG.PG,EditNameQry.PracticeGroup)=20

  Makes a difference.  The # signs are not required inside CF functions. =


  DC=20

    ----- Original Message -----=3D20=20
    From: Gieseman, Athelene=3D20=20
    To: '[EMAIL PROTECTED]'=3D20=20
    Sent: Tuesday, August 08, 2000 17:03=20
    Subject: RE: Multiple value Select=20



    OK.  I have another application where I do in fact use a table for =
the =3D=20

    lookup.  I've tried to use your example and apply it here.  But =3D=20
  nothing is=3D20=20
    selected.  My code is as follows:=3D20=20

    <cfquery datasource=3D3D"FirmDirectory" name=3D3D"EditNameQry">=3D20 =

    Select * from Employees where ID=3D3D'#EditGrid.ID#'=3D20=20
    </cfquery>=3D20=20

    <cfquery datasource=3D3D"FirmDirectory" name=3D3D"GetPG">=3D20=20
    Select * from PracticeGroups order by PG=3D20=20
    </cfquery>=3D20=20

            <cfselect name=3D3D"NewPG" size=3D3D"3" multiple>=3D20=20
                            <CFLoop query=3D3D"GetPG">=3D20=20
                            <CFIF=3D20=20
    ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)>=3D20=20
                            <CFSET PGSelected =3D3D "Selected">=3D20=20
                            <CFELSE>=3D20=20
                    <CFSET PGSelected =3D3D "">=3D20=20
                            </cfif>=3D20=20
                            <Option #PGSelected#=3D20=20
    value=3D3D"#PG#"><cfoutput>#PG#</cfoutput></option>=3D20=20
                            </cfloop>=3D20=20
                    </cfselect>=3D20=20

    Note that if I replace the :  <CFIF=3D20=20
    ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)>=3D20=20
    with:  <CFIF ListContains(GetPG.PG,"Agribusiness")>=3D20=20

    Then Agribusiness is in fact selected.  So I'm assuming there's =3D=20
  something=3D20=20
    wrong with that one line.  Do you happen to see where I went =
wrong?=3D20=20

    TIA,=3D20=20

    Athelene=3D20=20

    -----Original Message-----=3D20=20
    From: Mark Armendariz [mailto:[EMAIL PROTECTED]]=3D20=20
    Sent: Tuesday, August 08, 2000 7:44 AM=3D20=20
    To: [EMAIL PROTECTED]=3D20=20
    Subject: RE: Multiple value Select=3D20=20




    I did this sort of thing for an intranet i'm working on with =
selected=3D20=20
    company newsgroups... The best way to do it is with a database of =
your =3D=20

    finance types.  This will allow you to updae the select statement =
=3D=20
  without=3D20=20
    changing the hard coding.  So the form will always be right.  Query =
=3D=20
  that=3D20=20
    database and the user database.  In the user database, you will want =
=3D=20
  to save=3D20=20
    a comma delimited list of the finance types they are assigned for.  =
=3D=20
  When you=3D20=20
    bring up the select, you can scroll through all the finance types, =
and =3D=20
  if=3D20=20
    the user had any in his/her list, they will set the FinanceSelected =
=3D=20
  variable=3D20=20
    to 'selected.'  if they're not in the list, FinanceSelected will be =
=3D=20
  blank.=3D20=20

    Hope this helps...=3D20=20

    <CFQuery Name=3D3D"GetFinances" =
datasource=3D3D"#Application.datasource#"> =3D=20

      SELECT        FinanceName=3D20=20
      FROM  tblFinances=3D20=20
      ORDER By      FinanceName=3D20=20
    </CFQuery>=3D20=20

    <CFQuery Name=3D3D"GetCustomer" =
datasource=3D3D"#Application.datasource#"> =3D=20

      SELECT        CustomerName,=3D20=20
                    Address,=3D20=20
                    Finances        <!--- This Field is a comma =
delimited =3D=20
  list=3D20=20
    of the user's=3D20=20
    finances --->=3D20=20
      FROM  tblCustomers=3D20=20
      WHERE CustomerID =3D3D #Attributes.CustomerID#=3D20=20
    </cfgquery>=3D20=20




    Finances:<br>=3D20=20

    <Select Name=3D3D"Finances" size=3D3D"#GetFinances.RecordCount#" =
multiple> =3D=20

      <CFLoop query=3D3D"Finances">=3D20=20
        <CFIF ListContains(GetCustomer.Finances,#FinanceName#)>=3D20=20
          <CFSET FinanceSelected =3D3D "Selected">=3D20=20
        <CFELSE>=3D20=20
          <CFSET FinanceSelected =3D3D "">=3D20=20
        </cfif>=3D20=20
        <Option #FiannceSelected# =3D=20
  value=3D3D"#FinanceName#">#FinanceName#</option>=3D20=20
      </cfloop>=3D20=20
    </select>=3D20=20





    Mark Armendariz=3D20=20
    Righteous Design=3D20=20
    www.sorighteous.com=3D20=20
    [EMAIL PROTECTED]=3D20=20




    -----Original Message-----=3D20=20
    From: Gieseman, Athelene [mailto:[EMAIL PROTECTED]]=3D20=20
    Sent: Monday, August 07, 2000 6:34 PM=3D20=20
    To: [EMAIL PROTECTED]=3D20=20
    Subject: Multiple value Select=3D20=20




    I'm trying to set up a CFSELECT using the SELECTED option.  I need =
to =3D=20
  have=3D20=20
    the CFSELECT set up as multiple since more than one option is =3D=20
  permitted.=3D20=20
    However, I can never seem to get the SELECTED option to properly =3D =

  highlight=3D20=20
    the options that are already stored in the record.  (In other words, =
I =3D=20
  want=3D20=20
    to create an edit screen where the previously stored values are =3D=20
  preselected=3D20=20
    in this control.)  Any thoughts on what I may be doing wrong?  The =
=3D=20
  code for=3D20=20
    my select follows:  (Note that ViewGrid is a grid from which the =
user=3D20=20
    previously selected this record.  I've also tried doing this from a =
=3D=20
  query=3D20=20
    with the same result - nothing is selected.)=3D20=20

    <cfselect name=3D3D"FinanceType" size=3D3D"2" =3D=20
  selected=3D3D"#ViewGrid.FinanceType#"=3D20=20
    multiple>=3D20=20
    <option value=3D3D"Single Family Housing">Single Family =
Housing</option> =3D=20

    <option value=3D3D"501(c)(3)">501(c)(3)</option>=3D20=20
    <option value=3D3D"Hospital Revenue">Hospital Revenue</option>=3D20=20
    <option value=3D3D"Leasehold Revenue">Leasehold =
Revenue</option>=3D20=20
    <option value=3D3D"Multifamily Housing">Multifamily =
Housing</option>=3D20=20
    <option value=3D3D"General Obligation">General =
Obligation</option>=3D20=20
    <option value=3D3D"NID">NID</option>=3D20=20
    <option value=3D3D"Special Obligation">Special =
Obligation</option>=3D20=20
    <option value=3D3D"Industrial Development">Industrial =3D=20
  Development</option>=3D20=20
    <option value=3D3D"TIF">TIF</option>=3D20=20
    <option value=3D3D"TDD/TC">TDD/TC</option>=3D20=20
    <option value=3D3D"Other">Other</option>=3D20=20
    </cfselect>=3D20=20
    =3D=20
  =
-------------------------------------------------------------------------=
=3D=20
  ---=3D20=20
    --=3D20=20
    Archives: =
http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D20=20
    To Unsubscribe visit=3D20=20
    =3D=20
  =
http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&body=3D3Dlists/c=
f_ta=3D=20
  lk or=3D20=20
    send a message to [EMAIL PROTECTED] with =
'unsubscribe' =3D=20
  in=3D20=20
    the body.=3D20=20

    =3D=20
  =
-------------------------------------------------------------------------=
=3D=20
  ---=3D20=20
    --=3D20=20
    Archives: =
http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D20=20
    To Unsubscribe visit=3D20=20
    =3D=20
  =
http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&body=3D3Dlists/c=
f_ta=3D=20
  lk or=3D20=20
    send a message to [EMAIL PROTECTED] with =
'unsubscribe' =3D=20
  in=3D20=20
    the body.=3D20=20
    =3D=20
  =
-------------------------------------------------------------------------=
=3D=20
  -----=3D20=20
    Archives: =
http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D20=20
    To Unsubscribe visit =3D=20
  =
http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&body=3D3Dlists/c=
f_ta=3D=20
  lk or send a message to [EMAIL PROTECTED] with =3D=20
  'unsubscribe' in the body.=20



  ------=3D_NextPart_000_0242_01C0015B.7347C930=20
  Content-Type: text/html;=20
          charset=3D"Windows-1252"=20
  Content-Transfer-Encoding: quoted-printable=20

  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">=20
  <HTML><HEAD><TITLE>RE: Multiple value Select</TITLE>=20
  <META content=3D3D"text/html; charset=3D3Dwindows-1252" =3D=20
  http-equiv=3D3DContent-Type>=20
  <META content=3D3D"MSHTML 5.00.3018.900" name=3D3DGENERATOR>=20
  <STYLE></STYLE>=20
  </HEAD>=20
  <BODY bgColor=3D3D#ffffff>=20
  <DIV><FONT face=3D3DArial size=3D3D2>See if changing:</FONT></DIV>=20
  <DIV>&nbsp;</DIV>=20
  <DIV><FONT face=3D3DArial size=3D3D2><FONT=3D20=20
  =
size=3D3D2>ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)</FONT></FON=
T>=3D=20
  </DIV>=20
  <DIV>&nbsp;</DIV>=20
  <DIV><FONT face=3D3DArial size=3D3D2>to</FONT></DIV>=20
  <DIV>&nbsp;</DIV>=20
  <DIV><FONT face=3D3DArial size=3D3D2><FONT=3D20=20
  =
size=3D3D2>ListContains(GetPG.PG,EditNameQry.PracticeGroup)</FONT></FONT>=
</=3D=20
  DIV>=20
  <DIV>&nbsp;</DIV>=20
  <DIV><FONT face=3D3DArial size=3D3D2>Makes a difference.&nbsp; The # =
signs =3D=20
  are not=3D20=20
  required inside CF functions.</FONT></DIV>=20
  <DIV>&nbsp;</DIV>=20
  <DIV><FONT face=3D3DArial size=3D3D2>DC</FONT></DIV>=20
  <DIV>&nbsp;</DIV>=20
  <BLOCKQUOTE=3D20=20
  style=3D3D"BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; =
MARGIN-RIGHT: =3D=20
  0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">=20
    <DIV style=3D3D"FONT: 10pt arial">----- Original Message ----- =
</DIV>=20
    <DIV=3D20=20
    style=3D3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: =3D=20
  black"><B>From:</B>=3D20=20
    <A href=3D3D"mailto:[EMAIL PROTECTED]" =3D=20
  [EMAIL PROTECTED]>Gieseman,=3D20=20
    Athelene</A> </DIV>=20
    <DIV style=3D3D"FONT: 10pt arial"><B>To:</B> <A=3D20=20
    href=3D3D"mailto:'[EMAIL PROTECTED]'"=3D20=20
    [EMAIL PROTECTED]>'[EMAIL PROTECTED]'</A> =
=3D=20
  </DIV>=20
    <DIV style=3D3D"FONT: 10pt arial"><B>Sent:</B> Tuesday, August 08, =
2000=3D20=20
  17:03</DIV>=20
    <DIV style=3D3D"FONT: 10pt arial"><B>Subject:</B> RE: Multiple value =
=3D=20
  Select</DIV>=20
    <DIV><BR></DIV>=20
    <P><FONT size=3D3D2>OK.&nbsp; I have another application where I do =
in =3D=20
  fact use a=3D20=20
    table for the</FONT> <BR><FONT size=3D3D2>lookup.&nbsp; I've tried =
to =3D=20
  use your=3D20=20
    example and apply it here.&nbsp; But nothing is</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>selected.&nbsp; My code is as follows:</FONT> </P>=20
    <P><FONT size=3D3D2>&lt;cfquery datasource=3D3D"FirmDirectory"=3D20=20
    name=3D3D"EditNameQry"&gt;</FONT> <BR><FONT size=3D3D2>Select * from =
=3D=20
  Employees where=3D20=20
    ID=3D3D'#EditGrid.ID#'</FONT> <BR><FONT =
size=3D3D2>&lt;/cfquery&gt;</FONT> =3D=20
  </P>=20
    <P><FONT size=3D3D2>&lt;cfquery datasource=3D3D"FirmDirectory" =3D=20
  name=3D3D"GetPG"&gt;</FONT>=3D20=20
    <BR><FONT size=3D3D2>Select * from PracticeGroups order by PG</FONT> =
=3D=20
  <BR><FONT=3D20=20
    size=3D3D2>&lt;/cfquery&gt;</FONT> </P>=20
    <P><FONT size=3D3D2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
&lt;cfselect=3D20=20
    name=3D3D"NewPG" size=3D3D"3" multiple&gt;</FONT>=3D20=20
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
size=3D3D2>&lt;CFLoop=3D20=20
    query=3D3D"GetPG"&gt;</FONT> =3D=20
  <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =3D=20
  size=3D3D2>&lt;CFIF</FONT>=3D20=20
    <BR><FONT =3D=20
  =
size=3D3D2>ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)&gt;</FONT>=3D=
20=20
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
size=3D3D2>&lt;CFSET =3D=20
  PGSelected =3D3D=3D20=20
    "Selected"&gt;</FONT> =
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =3D=20
  size=3D3D2>&lt;CFELSE&gt;</FONT>=3D20=20
    <BR><FONT size=3D3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CFSET PGSelected =
=3D3D=3D20=20
    ""&gt;</FONT> <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =3D=20
  size=3D3D2>&lt;/cfif&gt;</FONT>=3D20=20
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =
size=3D3D2>&lt;Option=3D20=20
    #PGSelected#</FONT> <BR><FONT=3D20=20
    =3D=20
  =
size=3D3D2>value=3D3D"#PG#"&gt;&lt;cfoutput&gt;#PG#&lt;/cfoutput&gt;&lt;/=
opti=3D=20
  on&gt;</FONT>=3D20=20
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =3D=20
  size=3D3D2>&lt;/cfloop&gt;</FONT>=3D20=20
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=3D20=20
    size=3D3D2>&lt;/cfselect&gt;</FONT> </P>=20
    <P><FONT size=3D3D2>Note that if I replace the :&nbsp; =
&lt;CFIF</FONT> =3D=20
  <BR><FONT=3D20=20
    =
size=3D3D2>ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)&gt;</FONT> =
=3D=20
  <BR><FONT=3D20=20
    size=3D3D2>with:&nbsp; &lt;CFIF =3D=20
  ListContains(GetPG.PG,"Agribusiness")&gt;</FONT>=3D20=20
    </P>=20
    <P><FONT size=3D3D2>Then Agribusiness is in fact selected.&nbsp; So =
I'm =3D=20
  assuming=3D20=20
    there's something</FONT> <BR><FONT size=3D3D2>wrong with that one =
=3D=20
  line.&nbsp; Do=3D20=20
    you happen to see where I went wrong? </FONT></P>=20
    <P><FONT size=3D3D2>TIA,</FONT> </P>=20
    <P><FONT size=3D3D2>Athelene </FONT></P>=20
    <P><FONT size=3D3D2>-----Original Message-----</FONT> <BR><FONT =3D=20
  size=3D3D2>From: Mark=3D20=20
    Armendariz [<A=3D20=20
    =3D=20
  =
href=3D3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</=
FO=3D=20
  NT>=3D20=20
    <BR><FONT size=3D3D2>Sent: Tuesday, August 08, 2000 7:44 AM</FONT> =
=3D=20
  <BR><FONT=3D20=20
    size=3D3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT =3D=20
  size=3D3D2>Subject: RE:=3D20=20
    Multiple value Select</FONT> </P><BR>=20
    <P><FONT size=3D3D2>I did this sort of thing for an intranet i'm =
working =3D=20
  on with=3D20=20
    selected</FONT> <BR><FONT size=3D3D2>company newsgroups... The best =
way =3D=20
  to do it=3D20=20
    is with a database of your</FONT> <BR><FONT size=3D3D2>finance =3D=20
  types.&nbsp; This=3D20=20
    will allow you to updae the select statement without</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>changing the hard coding.&nbsp; So the form will always =
be =3D=20
  right.&nbsp;=3D20=20
    Query that</FONT> <BR><FONT size=3D3D2>database and the user =3D=20
  database.&nbsp; In=3D20=20
    the user database, you will want to save</FONT> <BR><FONT =
size=3D3D2>a =3D=20
  comma=3D20=20
    delimited list of the finance types they are assigned for.&nbsp; =
When=3D20=20
    you</FONT> <BR><FONT size=3D3D2>bring up the select, you can scroll =
=3D=20
  through all=3D20=20
    the finance types, and if</FONT> <BR><FONT size=3D3D2>the user had =
any =3D=20
  in his/her=3D20=20
    list, they will set the FinanceSelected variable</FONT> <BR><FONT =
=3D=20
  size=3D3D2>to=3D20=20
    'selected.'&nbsp; if they're not in the list, FinanceSelected will =
be=3D20=20
    blank.</FONT> </P>=20
    <P><FONT size=3D3D2>Hope this helps...</FONT> </P>=20
    <P><FONT size=3D3D2>&lt;CFQuery Name=3D3D"GetFinances"=3D20=20
    datasource=3D3D"#Application.datasource#"&gt;</FONT> <BR><FONT =3D=20
  size=3D3D2>&nbsp;=3D20=20
    SELECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FinanceName</FONT> =
=3D=20
  <BR><FONT=3D20=20
    size=3D3D2>&nbsp; FROM&nbsp; tblFinances</FONT> <BR><FONT =3D=20
  size=3D3D2>&nbsp; ORDER=3D20=20
    By&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FinanceName</FONT> <BR><FONT=3D20=20
    size=3D3D2>&lt;/CFQuery&gt;</FONT> </P>=20
    <P><FONT size=3D3D2>&lt;CFQuery Name=3D3D"GetCustomer"=3D20=20
    datasource=3D3D"#Application.datasource#"&gt;</FONT> <BR><FONT =3D=20
  size=3D3D2>&nbsp;=3D20=20
    SELECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
CustomerName,</FONT>=3D20=20
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT =3D=20
  size=3D3D2>Address,</FONT>=3D20=20
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=3D20=20
    size=3D3D2>Finances&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
&lt;!--- =3D=20
  This Field=3D20=20
    is a comma delimited list</FONT> <BR><FONT size=3D3D2>of the =3D=20
  user's</FONT>=3D20=20
    <BR><FONT size=3D3D2>finances ---&gt;</FONT> <BR><FONT =
size=3D3D2>&nbsp; =3D=20
  FROM&nbsp;=3D20=20
    tblCustomers</FONT> <BR><FONT size=3D3D2>&nbsp; WHERE CustomerID =
=3D3D=3D20=20
    #Attributes.CustomerID#</FONT> <BR><FONT =3D=20
  size=3D3D2>&lt;/cfgquery&gt;</FONT>=3D20=20
    </P><BR>=20
    <P><FONT size=3D3D2>Finances:&lt;br&gt;</FONT> </P>=20
    <P><FONT size=3D3D2>&lt;Select Name=3D3D"Finances" =3D=20
  size=3D3D"#GetFinances.RecordCount#"=3D20=20
    multiple&gt;</FONT> <BR><FONT size=3D3D2>&nbsp; &lt;CFLoop=3D20=20
    query=3D3D"Finances"&gt;</FONT> <BR><FONT =
size=3D3D2>&nbsp;&nbsp;&nbsp; =3D=20
  &lt;CFIF=3D20=20
    ListContains(GetCustomer.Finances,#FinanceName#)&gt;</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CFSET FinanceSelected =
=3D3D=3D20=20
    "Selected"&gt;</FONT> <BR><FONT size=3D3D2>&nbsp;&nbsp;&nbsp;=3D20=20
    &lt;CFELSE&gt;</FONT> <BR><FONT =3D=20
  size=3D3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=3D20=20
    &lt;CFSET FinanceSelected =3D3D ""&gt;</FONT> <BR><FONT =3D=20
  size=3D3D2>&nbsp;&nbsp;&nbsp;=3D20=20
    &lt;/cfif&gt;</FONT> <BR><FONT size=3D3D2>&nbsp;&nbsp;&nbsp; =
&lt;Option=3D20=20
    #FiannceSelected# =3D=20
  value=3D3D"#FinanceName#"&gt;#FinanceName#&lt;/option&gt;</FONT>=3D20=20
    <BR><FONT size=3D3D2>&nbsp; &lt;/cfloop&gt;</FONT> <BR><FONT=3D20=20
    size=3D3D2>&lt;/select&gt;</FONT> </P><BR><BR>=20
    <P><FONT size=3D3D2>Mark Armendariz</FONT> <BR><FONT =
size=3D3D2>Righteous=3D20=20
    Design</FONT> <BR><FONT size=3D3D2>www.sorighteous.com</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>[EMAIL PROTECTED]</FONT> </P><BR>=20
    <P><FONT size=3D3D2>-----Original Message-----</FONT> <BR><FONT =3D=20
  size=3D3D2>From:=3D20=20
    Gieseman, Athelene [<A=3D20=20
    =3D=20
  =
href=3D3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]=
</=3D=20
  FONT>=3D20=20
    <BR><FONT size=3D3D2>Sent: Monday, August 07, 2000 6:34 PM</FONT> =
=3D=20
  <BR><FONT=3D20=20
    size=3D3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT =3D=20
  size=3D3D2>Subject: Multiple=3D20=20
    value Select</FONT> </P><BR>=20
    <P><FONT size=3D3D2>I'm trying to set up a CFSELECT using the =
SELECTED=3D20=20
    option.&nbsp; I need to have</FONT> <BR><FONT size=3D3D2>the =
CFSELECT =3D=20
  set up as=3D20=20
    multiple since more than one option is permitted.</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>However, I can never seem to get the SELECTED option to =
=3D=20
  properly=3D20=20
    highlight</FONT> <BR><FONT size=3D3D2>the options that are already =
=3D=20
  stored in the=3D20=20
    record.&nbsp; (In other words, I want</FONT> <BR><FONT size=3D3D2>to =
=3D=20
  create an=3D20=20
    edit screen where the previously stored values are =
preselected</FONT>=3D20=20
    <BR><FONT size=3D3D2>in this control.)&nbsp; Any thoughts on what I =
may =3D=20
  be doing=3D20=20
    wrong?&nbsp; The code for</FONT> <BR><FONT size=3D3D2>my select =3D=20
  follows:&nbsp;=3D20=20
    (Note that ViewGrid is a grid from which the user</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>previously selected this record.&nbsp; I've also tried =
doing =3D=20
  this from=3D20=20
    a query</FONT> <BR><FONT size=3D3D2>with the same result - nothing =
is=3D20=20
    selected.)</FONT> </P>=20
    <P><FONT size=3D3D2>&lt;cfselect name=3D3D"FinanceType" =
size=3D3D"2"=3D20=20
    selected=3D3D"#ViewGrid.FinanceType#"</FONT> <BR><FONT =3D=20
  size=3D3D2>multiple&gt;</FONT>=3D20=20
    <BR><FONT size=3D3D2>&lt;option value=3D3D"Single Family =3D=20
  Housing"&gt;Single Family=3D20=20
    Housing&lt;/option&gt;</FONT> <BR><FONT size=3D3D2>&lt;option=3D20=20
    value=3D3D"501(c)(3)"&gt;501(c)(3)&lt;/option&gt;</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>&lt;option value=3D3D"Hospital Revenue"&gt;Hospital=3D20=20
    Revenue&lt;/option&gt;</FONT> <BR><FONT size=3D3D2>&lt;option =3D=20
  value=3D3D"Leasehold=3D20=20
    Revenue"&gt;Leasehold Revenue&lt;/option&gt;</FONT> <BR><FONT=3D20=20
    size=3D3D2>&lt;option value=3D3D"Multifamily =
Housing"&gt;Multifamily=3D20=20
    Housing&lt;/option&gt;</FONT> <BR><FONT size=3D3D2>&lt;option =3D=20
  value=3D3D"General=3D20=20
    Obligation"&gt;General Obligation&lt;/option&gt;</FONT> =
<BR><FONT=3D20=20
    size=3D3D2>&lt;option value=3D3D"NID"&gt;NID&lt;/option&gt;</FONT> =
=3D=20
  <BR><FONT=3D20=20
    size=3D3D2>&lt;option value=3D3D"Special Obligation"&gt;Special=3D20 =

    Obligation&lt;/option&gt;</FONT> <BR><FONT size=3D3D2>&lt;option =3D =

  value=3D3D"Industrial=3D20=20
    Development"&gt;Industrial Development&lt;/option&gt;</FONT> =
<BR><FONT =3D=20

    size=3D3D2>&lt;option value=3D3D"TIF"&gt;TIF&lt;/option&gt;</FONT> =
=3D=20
  <BR><FONT=3D20=20
    size=3D3D2>&lt;option =
value=3D3D"TDD/TC"&gt;TDD/TC&lt;/option&gt;</FONT> =3D=20
  <BR><FONT=3D20=20
    size=3D3D2>&lt;option =
value=3D3D"Other"&gt;Other&lt;/option&gt;</FONT> =3D=20
  <BR><FONT=3D20=20
    size=3D3D2>&lt;/cfselect&gt;</FONT> <BR><FONT=3D20=20
    =3D=20
  =
size=3D3D2>--------------------------------------------------------------=
--=3D=20
  ------------</FONT>=3D20=20
    <BR><FONT size=3D3D2>--</FONT> <BR><FONT size=3D3D2>Archives: =
<A=3D20=20
    =
href=3D3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=3D20=20
    =3D=20
  =
target=3D3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/<=
/A=3D=20
  ></FONT>=3D20=20
    <BR><FONT size=3D3D2>To Unsubscribe visit</FONT> <BR><FONT =
size=3D3D2><A=3D20=20
    =3D=20
  =
href=3D3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&body=3D=
3D=3D=20
  lists/cf_talk"=3D20=20
    =3D=20
  =
target=3D3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlist=
s&am=3D=20
  p;body=3D3Dlists/cf_talk</A>=3D20=20
    or</FONT> <BR><FONT size=3D3D2>send a message to =3D=20
  [EMAIL PROTECTED]=3D20=20
    with 'unsubscribe' in</FONT> <BR><FONT size=3D3D2>the body.</FONT> =
</P>=20
    <P><FONT=3D20=20
    =3D=20
  =
size=3D3D2>--------------------------------------------------------------=
--=3D=20
  ------------</FONT>=3D20=20
    <BR><FONT size=3D3D2>--</FONT> <BR><FONT size=3D3D2>Archives: =
<A=3D20=20
    =
href=3D3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=3D20=20
    =3D=20
  =
target=3D3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/<=
/A=3D=20
  ></FONT>=3D20=20
    <BR><FONT size=3D3D2>To Unsubscribe visit</FONT> <BR><FONT =
size=3D3D2><A=3D20=20
    =3D=20
  =
href=3D3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&body=3D=
3D=3D=20
  lists/cf_talk"=3D20=20
    =3D=20
  =
target=3D3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlist=
s&am=3D=20
  p;body=3D3Dlists/cf_talk</A>=3D20=20
    or</FONT> <BR><FONT size=3D3D2>send a message to =3D=20
  [EMAIL PROTECTED]=3D20=20
    with 'unsubscribe' in</FONT> <BR><FONT size=3D3D2>the body.</FONT> =
=3D=20
  <BR><FONT=3D20=20
    =3D=20
  =
size=3D3D2>--------------------------------------------------------------=
--=3D=20
  --------------</FONT>=3D20=20
    <BR><FONT size=3D3D2>Archives: <A=3D20=20
    =
href=3D3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/"=3D20=20
    =3D=20
  =
target=3D3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/<=
/A=3D=20
  ></FONT>=3D20=20
    <BR><FONT size=3D3D2>To Unsubscribe visit <A=3D20=20
    =3D=20
  =
href=3D3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&body=3D=
3D=3D=20
  lists/cf_talk"=3D20=20
    =3D=20
  =
target=3D3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlist=
s&am=3D=20
  p;body=3D3Dlists/cf_talk</A>=3D20=20
    or send a message to [EMAIL PROTECTED] with =3D=20
  'unsubscribe' in=3D20=20
    the body.</FONT></P></BLOCKQUOTE></BODY></HTML>=20

  ------=3D_NextPart_000_0242_01C0015B.7347C930--=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_ta=
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_ta=
lk or send a message to [EMAIL PROTECTED] with =
'unsubscribe' in the body.


------=_NextPart_000_025D_01C0015C.FC0970B0
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>Try</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=3DArial=20
size=3D2>listfindnocase(getpg.pg,EditNameQry.PracticeGroup)</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>and see if that works.</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
17:09</DIV>
  <DIV style=3D"FONT: 10pt arial"><B>Subject:</B> RE: Multiple value =
Select</DIV>
  <DIV><BR></DIV>
  <P><FONT size=3D2>Thanks for the quick response.&nbsp; Tried that and =
no=20
  luck.&nbsp; </FONT></P>
  <P><FONT size=3D2>Athelene</FONT> </P>
  <P><FONT size=3D2>-----Original Message-----</FONT> <BR><FONT =
size=3D2>From: David=20
  E. Crawford [<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:dcrawford@yalesecurity.=
com</A>]</FONT>=20
  <BR><FONT size=3D2>Sent: Tuesday, August 08, 2000 12:10 PM</FONT> =
<BR><FONT=20
  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 is a multi-part message in MIME format.</FONT> =
</P>
  <P><FONT size=3D2>------=3D_NextPart_000_0242_01C0015B.7347C930</FONT> =
<BR><FONT=20
  size=3D2>Content-Type: text/plain;</FONT>=20
  <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
  size=3D2>charset=3D"Windows-1252"</FONT> <BR><FONT=20
  size=3D2>Content-Transfer-Encoding: quoted-printable</FONT> </P>
  <P><FONT size=3D2>RE: Multiple value SelectSee if changing:</FONT> =
</P>
  <P><FONT =
size=3D2>ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)</FONT> </P>
  <P><FONT size=3D2>to</FONT> </P>
  <P><FONT =
size=3D2>ListContains(GetPG.PG,EditNameQry.PracticeGroup)</FONT> </P>
  <P><FONT size=3D2>Makes a difference.&nbsp; The # signs are not =
required inside=20
  CF functions.</FONT> </P>
  <P><FONT size=3D2>DC</FONT> </P>
  <P><FONT size=3D2>&nbsp; ----- Original Message -----=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; From: Gieseman, Athelene=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; To:=20
  '[EMAIL PROTECTED]'=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
Sent: Tuesday,=20
  August 08, 2000 17:03</FONT> <BR><FONT size=3D2>&nbsp; Subject: RE: =
Multiple=20
  value Select</FONT> </P><BR>
  <P><FONT size=3D2>&nbsp; OK.&nbsp; I have another application where I =
do in fact=20
  use a table for the =3D</FONT> </P>
  <P><FONT size=3D2>&nbsp; lookup.&nbsp; I've tried to use your example =
and apply=20
  it here.&nbsp; But =3D</FONT> <BR><FONT size=3D2>nothing =
is=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; selected.&nbsp; My code is as follows:=3D20</FONT> =
</P>
  <P><FONT size=3D2>&nbsp; &lt;cfquery datasource=3D3D"FirmDirectory"=20
  name=3D3D"EditNameQry"&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
Select * from=20
  Employees where ID=3D3D'#EditGrid.ID#'=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;/cfquery&gt;=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; &lt;cfquery datasource=3D3D"FirmDirectory"=20
  name=3D3D"GetPG"&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; Select * =
from=20
  PracticeGroups order by PG=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;/cfquery&gt;=3D20</FONT> </P>
  <P><FONT =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  &lt;cfselect name=3D3D"NewPG" size=3D3D"3" multiple&gt;=3D20</FONT> =
<BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;=20
  &lt;CFLoop query=3D3D"GetPG"&gt;=3D20</FONT> <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;=20
  &lt;CFIF=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)&gt;=3D20</FONT> =
<BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;=20
  &lt;CFSET PGSelected =3D3D "Selected"&gt;=3D20</FONT> <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;=20
  &lt;CFELSE&gt;=3D20</FONT> <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  &lt;CFSET PGSelected =3D3D ""&gt;=3D20</FONT> <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;=20
  &lt;/cfif&gt;=3D20</FONT> <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;=20
  &lt;Option #PGSelected#=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  =
value=3D3D"#PG#"&gt;&lt;cfoutput&gt;#PG#&lt;/cfoutput&gt;&lt;/option&gt;=3D=
20</FONT>=20
  <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;=20
  &lt;/cfloop&gt;=3D20</FONT> <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  &lt;/cfselect&gt;=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; Note that if I replace the :&nbsp; =
&lt;CFIF=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; with:&nbsp; &lt;CFIF=20
  ListContains(GetPG.PG,"Agribusiness")&gt;=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; Then Agribusiness is in fact selected.&nbsp; =
So I'm=20
  assuming there's =3D</FONT> <BR><FONT size=3D2>something=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; wrong with that one line.&nbsp; Do you happen to see =
where I=20
  went wrong?=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; TIA,=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; Athelene=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; -----Original Message-----=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; From: Mark Armendariz [<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]=3D2=
0</FONT>=20
  <BR><FONT size=3D2>&nbsp; Sent: Tuesday, August 08, 2000 7:44 =
AM=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; To: [EMAIL PROTECTED]=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; Subject: RE: Multiple value Select=3D20</FONT> =
</P><BR><BR>
  <P><FONT size=3D2>&nbsp; I did this sort of thing for an intranet i'm =
working on=20
  with selected=3D20</FONT> <BR><FONT size=3D2>&nbsp; company =
newsgroups... The best=20
  way to do it is with a database of your =3D</FONT> </P>
  <P><FONT size=3D2>&nbsp; finance types.&nbsp; This will allow you to =
updae the=20
  select statement =3D</FONT> <BR><FONT size=3D2>without=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; changing the hard coding.&nbsp; So the form will =
always be=20
  right.&nbsp; Query =3D</FONT> <BR><FONT size=3D2>that=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; database and the user database.&nbsp; In the user =
database, you=20
  will want =3D</FONT> <BR><FONT size=3D2>to save=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  a comma delimited list of the finance types they are assigned =
for.&nbsp;=20
  =3D</FONT> <BR><FONT size=3D2>When you=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; bring up=20
  the select, you can scroll through all the finance types, and =
=3D</FONT>=20
  <BR><FONT size=3D2>if=3D20</FONT> <BR><FONT size=3D2>&nbsp; the user =
had any in=20
  his/her list, they will set the FinanceSelected =3D</FONT> <BR><FONT=20
  size=3D2>variable=3D20</FONT> <BR><FONT size=3D2>&nbsp; to =
'selected.'&nbsp; if=20
  they're not in the list, FinanceSelected will be =3D</FONT> <BR><FONT=20
  size=3D2>blank.=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; Hope this helps...=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; &lt;CFQuery Name=3D3D"GetFinances"=20
  datasource=3D3D"#Application.datasource#"&gt; =3D</FONT> </P>
  <P><FONT size=3D2>&nbsp;&nbsp;&nbsp;=20
  SELECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
FinanceName=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp; FROM&nbsp; =
tblFinances=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp;&nbsp;&nbsp; ORDER By&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  FinanceName=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;/CFQuery&gt;=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; &lt;CFQuery Name=3D3D"GetCustomer"=20
  datasource=3D3D"#Application.datasource#"&gt; =3D</FONT> </P>
  <P><FONT size=3D2>&nbsp;&nbsp;&nbsp;=20
  SELECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
CustomerName,=3D20</FONT>=20
  <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  Address,=3D20</FONT> <BR><FONT=20
  =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  Finances&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;!--- This Field =
is a=20
  comma delimited =3D</FONT> <BR><FONT size=3D2>list=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; of the user's=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
finances=20
  ---&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp; FROM&nbsp;=20
  tblCustomers=3D20</FONT> <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp; WHERE =
CustomerID=20
  =3D3D #Attributes.CustomerID#=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;/cfgquery&gt;=3D20</FONT> </P><BR><BR>
  <P><FONT size=3D2>&nbsp; Finances:&lt;br&gt;=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; &lt;Select Name=3D3D"Finances"=20
  size=3D3D"#GetFinances.RecordCount#" multiple&gt; =3D</FONT> </P>
  <P><FONT size=3D2>&nbsp;&nbsp;&nbsp; &lt;CFLoop =
query=3D3D"Finances"&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CFIF=20
  ListContains(GetCustomer.Finances,#FinanceName#)&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CFSET =
FinanceSelected=20
  =3D3D "Selected"&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  &lt;CFELSE&gt;=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CFSET =
FinanceSelected=20
  =3D3D ""&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  &lt;/cfif&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
  &lt;Option #FiannceSelected# =3D</FONT> <BR><FONT=20
  =
size=3D2>value=3D3D"#FinanceName#"&gt;#FinanceName#&lt;/option&gt;=3D20</=
FONT>=20
  <BR><FONT size=3D2>&nbsp;&nbsp;&nbsp; &lt;/cfloop&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;/select&gt;=3D20</FONT> </P><BR><BR><BR>
  <P><FONT size=3D2>&nbsp; Mark Armendariz=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  Righteous Design=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  www.sorighteous.com=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  [EMAIL PROTECTED]=3D20</FONT> </P><BR><BR>
  <P><FONT size=3D2>&nbsp; -----Original Message-----=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; From: Gieseman, Athelene [<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp; Sent: Monday, August 07, 2000 6:34 =
PM=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; To: [EMAIL PROTECTED]=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; Subject: Multiple value Select=3D20</FONT> =
</P><BR><BR>
  <P><FONT size=3D2>&nbsp; I'm trying to set up a CFSELECT using the =
SELECTED=20
  option.&nbsp; I need to =3D</FONT> <BR><FONT size=3D2>have=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; the CFSELECT set up as multiple since more than one =
option is=20
  =3D</FONT> <BR><FONT size=3D2>permitted.=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  However, I can never seem to get the SELECTED option to properly =
=3D</FONT>=20
  <BR><FONT size=3D2>highlight=3D20</FONT> <BR><FONT size=3D2>&nbsp; the =
options that=20
  are already stored in the record.&nbsp; (In other words, I =3D</FONT> =
<BR><FONT=20
  size=3D2>want=3D20</FONT> <BR><FONT size=3D2>&nbsp; to create an edit =
screen where=20
  the previously stored values are =3D</FONT> <BR><FONT=20
  size=3D2>preselected=3D20</FONT> <BR><FONT size=3D2>&nbsp; in this =
control.)&nbsp;=20
  Any thoughts on what I may be doing wrong?&nbsp; The =3D</FONT> =
<BR><FONT=20
  size=3D2>code for=3D20</FONT> <BR><FONT size=3D2>&nbsp; my select =
follows:&nbsp;=20
  (Note that ViewGrid is a grid from which the user=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; previously selected this record.&nbsp; I've also tried =
doing=20
  this from a =3D</FONT> <BR><FONT size=3D2>query=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  with the same result - nothing is selected.)=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; &lt;cfselect name=3D3D"FinanceType" =
size=3D3D"2" =3D</FONT>=20
  <BR><FONT size=3D2>selected=3D3D"#ViewGrid.FinanceType#"=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; multiple&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;option=20
  value=3D3D"Single Family Housing"&gt;Single Family =
Housing&lt;/option&gt;=20
  =3D</FONT> </P>
  <P><FONT size=3D2>&nbsp; &lt;option=20
  value=3D3D"501(c)(3)"&gt;501(c)(3)&lt;/option&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;option value=3D3D"Hospital Revenue"&gt;Hospital=20
  Revenue&lt;/option&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;option=20
  value=3D3D"Leasehold Revenue"&gt;Leasehold =
Revenue&lt;/option&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;option value=3D3D"Multifamily=20
  Housing"&gt;Multifamily Housing&lt;/option&gt;=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; &lt;option value=3D3D"General Obligation"&gt;General=20
  Obligation&lt;/option&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;option=20
  value=3D3D"NID"&gt;NID&lt;/option&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;option value=3D3D"Special Obligation"&gt;Special=20
  Obligation&lt;/option&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;option=20
  value=3D3D"Industrial Development"&gt;Industrial =3D</FONT> <BR><FONT=20
  size=3D2>Development&lt;/option&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; &lt;option=20
  value=3D3D"TIF"&gt;TIF&lt;/option&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;option value=3D3D"TDD/TC"&gt;TDD/TC&lt;/option&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;option =
value=3D3D"Other"&gt;Other&lt;/option&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;/cfselect&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  =3D</FONT> <BR><FONT=20
  =
size=3D2>----------------------------------------------------------------=
---------=3D</FONT>=20
  <BR><FONT size=3D2>---=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
--=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; Archives: <A=20
  href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D20"=20
  =
target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D=
20</A></FONT>=20
  <BR><FONT size=3D2>&nbsp; To Unsubscribe visit=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  =3D</FONT> <BR><FONT size=3D2><A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;body=
=3D3Dlists/cf_ta=3D"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;body=3D3Dlists/cf_ta=3D</A></FONT>=20
  <BR><FONT size=3D2>lk or=3D20</FONT> <BR><FONT size=3D2>&nbsp; send a =
message to=20
  [EMAIL PROTECTED] with 'unsubscribe' =3D</FONT> =
<BR><FONT=20
  size=3D2>in=3D20</FONT> <BR><FONT size=3D2>&nbsp; the =
body.=3D20</FONT> </P>
  <P><FONT size=3D2>&nbsp; =3D</FONT> <BR><FONT=20
  =
size=3D2>----------------------------------------------------------------=
---------=3D</FONT>=20
  <BR><FONT size=3D2>---=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
--=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; Archives: <A=20
  href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D20"=20
  =
target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D=
20</A></FONT>=20
  <BR><FONT size=3D2>&nbsp; To Unsubscribe visit=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  =3D</FONT> <BR><FONT size=3D2><A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;body=
=3D3Dlists/cf_ta=3D"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;body=3D3Dlists/cf_ta=3D</A></FONT>=20
  <BR><FONT size=3D2>lk or=3D20</FONT> <BR><FONT size=3D2>&nbsp; send a =
message to=20
  [EMAIL PROTECTED] with 'unsubscribe' =3D</FONT> =
<BR><FONT=20
  size=3D2>in=3D20</FONT> <BR><FONT size=3D2>&nbsp; the =
body.=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; =3D</FONT> <BR><FONT=20
  =
size=3D2>----------------------------------------------------------------=
---------=3D</FONT>=20
  <BR><FONT size=3D2>-----=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
Archives: <A=20
  href=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D20"=20
  =
target=3D_blank>http://www.mail-archive.com/cf-talk@houseoffusion.com/=3D=
20</A></FONT>=20
  <BR><FONT size=3D2>&nbsp; To Unsubscribe visit =3D</FONT> <BR><FONT =
size=3D2><A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;body=
=3D3Dlists/cf_ta=3D"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;body=3D3Dlists/cf_ta=3D</A></FONT>=20
  <BR><FONT size=3D2>lk or send a message to =
[EMAIL PROTECTED]=20
  with =3D</FONT> <BR><FONT size=3D2>'unsubscribe' in the body.</FONT> =
</P><BR>
  <P><FONT size=3D2>------=3D_NextPart_000_0242_01C0015B.7347C930</FONT> =
<BR><FONT=20
  size=3D2>Content-Type: text/html;</FONT>=20
  <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT=20
  size=3D2>charset=3D"Windows-1252"</FONT> <BR><FONT=20
  size=3D2>Content-Transfer-Encoding: quoted-printable</FONT> </P>
  <P><FONT size=3D2>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0=20
  Transitional//EN"&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;HTML&gt;&lt;HEAD&gt;&lt;TITLE&gt;RE: Multiple value=20
  Select&lt;/TITLE&gt;</FONT> <BR><FONT size=3D2>&lt;META =
content=3D3D"text/html;=20
  charset=3D3Dwindows-1252" =3D</FONT> <BR><FONT=20
  size=3D2>http-equiv=3D3DContent-Type&gt;</FONT> <BR><FONT =
size=3D2>&lt;META=20
  content=3D3D"MSHTML 5.00.3018.900" name=3D3DGENERATOR&gt;</FONT> =
<BR><FONT=20
  size=3D2>&lt;STYLE&gt;&lt;/STYLE&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;/HEAD&gt;</FONT> <BR><FONT size=3D2>&lt;BODY=20
  bgColor=3D3D#ffffff&gt;</FONT> <BR><FONT size=3D2>&lt;DIV&gt;&lt;FONT =
face=3D3DArial=20
  size=3D3D2&gt;See if changing:&lt;/FONT&gt;&lt;/DIV&gt;</FONT> =
<BR><FONT=20
  size=3D2>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&lt;FONT face=3D3DArial =
size=3D3D2&gt;&lt;FONT=3D20</FONT>=20
  <BR><FONT=20
  =
size=3D2>size=3D3D2&gt;ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=
&lt;/FONT&gt;&lt;/FONT&gt;=3D</FONT>=20
  <BR><FONT size=3D2>&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&lt;FONT face=3D3DArial=20
  size=3D3D2&gt;to&lt;/FONT&gt;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&lt;FONT face=3D3DArial =
size=3D3D2&gt;&lt;FONT=3D20</FONT>=20
  <BR><FONT=20
  =
size=3D2>size=3D3D2&gt;ListContains(GetPG.PG,EditNameQry.PracticeGroup)&l=
t;/FONT&gt;&lt;/FONT&gt;&lt;/=3D</FONT>=20
  <BR><FONT size=3D2>DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&lt;FONT face=3D3DArial size=3D3D2&gt;Makes a=20
  difference.&amp;nbsp; The # signs =3D</FONT> <BR><FONT size=3D2>are =
not=3D20</FONT>=20
  <BR><FONT size=3D2>required inside CF =
functions.&lt;/FONT&gt;&lt;/DIV&gt;</FONT>=20
  <BR><FONT size=3D2>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&lt;FONT face=3D3DArial=20
  size=3D3D2&gt;DC&lt;/FONT&gt;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</FONT> <BR><FONT=20
  size=3D2>&lt;BLOCKQUOTE=3D20</FONT> <BR><FONT =
size=3D2>style=3D3D"BORDER-LEFT: #000000=20
  2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: =3D</FONT> <BR><FONT =
size=3D2>0px;=20
  PADDING-LEFT: 5px; PADDING-RIGHT: 0px"&gt;</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;DIV style=3D3D"FONT: 10pt arial"&gt;----- Original Message -----=20
  &lt;/DIV&gt;</FONT> <BR><FONT size=3D2>&nbsp; &lt;DIV=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; style=3D3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; =
font-color:=20
  =3D</FONT> <BR><FONT =
size=3D2>black"&gt;&lt;B&gt;From:&lt;/B&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;A href=3D3D"<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>" =
=3D</FONT>=20
  <BR><FONT =
size=3D2>[EMAIL PROTECTED]&gt;Gieseman,=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; Athelene&lt;/A&gt; &lt;/DIV&gt;</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;DIV style=3D3D"FONT: 10pt =
arial"&gt;&lt;B&gt;To:&lt;/B&gt;=20
  &lt;A=3D20</FONT> <BR><FONT size=3D2>&nbsp; href=3D3D"<A=20
  =
href=3D"mailto:'[EMAIL PROTECTED]'">mailto:'cf-talk@houseoffusion=
.com'</A>"=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
[EMAIL PROTECTED]&gt;'[EMAIL PROTECTED]'&lt;/A&=
gt;=20
  =3D</FONT> <BR><FONT size=3D2>&lt;/DIV&gt;</FONT> <BR><FONT =
size=3D2>&nbsp; &lt;DIV=20
  style=3D3D"FONT: 10pt arial"&gt;&lt;B&gt;Sent:&lt;/B&gt; Tuesday, =
August 08,=20
  2000=3D20</FONT> <BR><FONT size=3D2>17:03&lt;/DIV&gt;</FONT> <BR><FONT =

  size=3D2>&nbsp; &lt;DIV style=3D3D"FONT: 10pt=20
  arial"&gt;&lt;B&gt;Subject:&lt;/B&gt; RE: Multiple value =3D</FONT> =
<BR><FONT=20
  size=3D2>Select&lt;/DIV&gt;</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;P&gt;&lt;FONT size=3D3D2&gt;OK.&amp;nbsp; I have another =
application where I=20
  do in =3D</FONT> <BR><FONT size=3D2>fact use a=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  table for the&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =
size=3D3D2&gt;lookup.&amp;nbsp;=20
  I've tried to =3D</FONT> <BR><FONT size=3D2>use your=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; example and apply it here.&amp;nbsp; But nothing =
is&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;selected.&amp;nbsp; My code is as follows:&lt;/FONT&gt;=20
  &lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;lt;cfquery =
datasource=3D3D"FirmDirectory"=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; name=3D3D"EditNameQry"&amp;gt;&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;Select * from =3D</FONT> <BR><FONT size=3D2>Employees =
where=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; ID=3D3D'#EditGrid.ID#'&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;lt;/cfquery&amp;gt;&lt;/FONT&gt; =3D</FONT> =
<BR><FONT=20
  size=3D2>&lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT =

  size=3D3D2&gt;&amp;lt;cfquery datasource=3D3D"FirmDirectory" =
=3D</FONT> <BR><FONT=20
  size=3D2>name=3D3D"GetPG"&amp;gt;&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;Select * from PracticeGroups order by =

  PG&lt;/FONT&gt; =3D</FONT> <BR><FONT =
size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; =
size=3D3D2&gt;&amp;lt;/cfquery&amp;gt;&lt;/FONT&gt;=20
  &lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; =
&amp;nbsp;&amp;nbsp;&amp;nbsp;=20
  &amp;lt;cfselect=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
name=3D3D"NewPG" size=3D3D"3"=20
  multiple&amp;gt;&lt;/FONT&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT size=3D3D2&gt;&amp;lt;CFLoop=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  query=3D3D"GetPG"&amp;gt;&lt;/FONT&gt; =3D</FONT> <BR><FONT=20
  =
size=3D2>&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp=
;nbsp;&amp;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D2&gt;&amp;lt;CFIF&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT=20
  =
size=3D2>size=3D3D2&gt;ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)=
&amp;gt;&lt;/FONT&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT size=3D3D2&gt;&amp;lt;CFSET =3D</FONT> <BR><FONT =
size=3D2>PGSelected=20
  =3D3D=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
"Selected"&amp;gt;&lt;/FONT&gt;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D2&gt;&amp;lt;CFELSE&amp;gt;&lt;/FONT&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=20
  &amp;nbsp;=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &amp;lt;CFSET PGSelected =3D3D=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  ""&amp;gt;&lt;/FONT&gt;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D2&gt;&amp;lt;/cfif&amp;gt;&lt;/FONT&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT size=3D3D2&gt;&amp;lt;Option=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  #PGSelected#&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  =3D</FONT> <BR><FONT=20
  =
size=3D2>size=3D3D2&gt;value=3D3D"#PG#"&amp;gt;&amp;lt;cfoutput&amp;gt;#P=
G#&amp;lt;/cfoutput&amp;gt;&amp;lt;/opti=3D</FONT>=20
  <BR><FONT size=3D2>on&amp;gt;&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D=
20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT =3D</FONT> <BR><FONT=20
  =
size=3D2>size=3D3D2&gt;&amp;lt;/cfloop&amp;gt;&lt;/FONT&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;/cfselect&amp;gt;&lt;/FONT&gt; &lt;/P&gt;</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;P&gt;&lt;FONT size=3D3D2&gt;Note that if I replace =
the=20
  :&amp;nbsp; &amp;lt;CFIF&lt;/FONT&gt; =3D</FONT> <BR><FONT=20
  size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  =
size=3D3D2&gt;ListContains(GetPG.PG,#EditNameQry.PracticeGroup#)&amp;gt;&=
lt;/FONT&gt;=20
  =3D</FONT> <BR><FONT size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;with:&amp;nbsp; &amp;lt;CFIF =3D</FONT> <BR><FONT=20
  =
size=3D2>ListContains(GetPG.PG,"Agribusiness")&amp;gt;&lt;/FONT&gt;=3D20<=
/FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;P&gt;&lt;FONT size=3D3D2&gt;Then Agribusiness is in fact =
selected.&amp;nbsp;=20
  So I'm =3D</FONT> <BR><FONT size=3D2>assuming=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  there's something&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;wrong =
with that=20
  one =3D</FONT> <BR><FONT size=3D2>line.&amp;nbsp; Do=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; you happen to see where I went wrong?=20
  &lt;/FONT&gt;&lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;P&gt;&lt;FONT=20
  size=3D3D2&gt;TIA,&lt;/FONT&gt; &lt;/P&gt;</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;P&gt;&lt;FONT size=3D3D2&gt;Athelene =
&lt;/FONT&gt;&lt;/P&gt;</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT =
size=3D3D2&gt;-----Original=20
  Message-----&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D2&gt;From: Mark=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; Armendariz=20
  [&lt;A=3D20</FONT> <BR><FONT size=3D2>&nbsp; =3D</FONT> <BR><FONT =
size=3D2>href=3D3D"<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>"&gt;=
<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>&lt;/=
A&gt;]&lt;/FO=3D</FONT>=20
  <BR><FONT size=3D2>NT&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;Sent: Tuesday, August 08, 2000 7:44 AM&lt;/FONT&gt; =
=3D</FONT>=20
  <BR><FONT size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;To: [EMAIL PROTECTED]&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  =3D</FONT> <BR><FONT size=3D2>size=3D3D2&gt;Subject: RE:=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; Multiple value Select&lt;/FONT&gt; =
&lt;/P&gt;&lt;BR&gt;</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT size=3D3D2&gt;I did this =
sort of thing=20
  for an intranet i'm working =3D</FONT> <BR><FONT size=3D2>on =
with=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; selected&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;company newsgroups... The best way =3D</FONT> <BR><FONT =
size=3D2>to do=20
  it=3D20</FONT> <BR><FONT size=3D2>&nbsp; is with a database of =
your&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;finance =3D</FONT> <BR><FONT=20
  size=3D2>types.&amp;nbsp; This=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
will allow you=20
  to updae the select statement without&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
size=3D3D2&gt;changing the=20
  hard coding.&amp;nbsp; So the form will always be =3D</FONT> <BR><FONT =

  size=3D2>right.&amp;nbsp;=3D20</FONT> <BR><FONT size=3D2>&nbsp; Query=20
  that&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;database and the =
user=20
  =3D</FONT> <BR><FONT size=3D2>database.&amp;nbsp; In=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; the user database, you will want to save&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;a =3D</FONT> <BR><FONT =
size=3D2>comma=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; delimited list of the finance types they are =
assigned=20
  for.&amp;nbsp; When=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
you&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;bring up the select, you can scroll =
=3D</FONT>=20
  <BR><FONT size=3D2>through all=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
the finance=20
  types, and if&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;the user =
had any=20
  =3D</FONT> <BR><FONT size=3D2>in his/her=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; list,=20
  they will set the FinanceSelected variable&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  =3D</FONT> <BR><FONT size=3D2>size=3D3D2&gt;to=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  'selected.'&amp;nbsp; if they're not in the list, FinanceSelected will =

  be=3D20</FONT> <BR><FONT size=3D2>&nbsp; blank.&lt;/FONT&gt; =
&lt;/P&gt;</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT size=3D3D2&gt;Hope this=20
  helps...&lt;/FONT&gt; &lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;P&gt;&lt;FONT size=3D3D2&gt;&amp;lt;CFQuery =
Name=3D3D"GetFinances"=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  datasource=3D3D"#Application.datasource#"&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT =
size=3D2>size=3D3D2&gt;&amp;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nb=
sp;=20
  FinanceName&lt;/FONT&gt; =3D</FONT> <BR><FONT=20
  size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;nbsp; FROM&amp;nbsp; tblFinances&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT =
size=3D2>size=3D3D2&gt;&amp;nbsp;=20
  ORDER=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  By&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =
FinanceName&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;/CFQuery&amp;gt;&lt;/FONT&gt; &lt;/P&gt;</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;P&gt;&lt;FONT size=3D3D2&gt;&amp;lt;CFQuery=20
  Name=3D3D"GetCustomer"=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  datasource=3D3D"#Application.datasource#"&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT =
size=3D2>size=3D3D2&gt;&amp;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nb=
sp;=20
  CustomerName,&lt;/FONT&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT =3D</FONT> <BR><FONT =
size=3D2>size=3D3D2&gt;Address,&lt;/FONT&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  =
&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&am=
p;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp;=20
  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =

  &lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  =
size=3D3D2&gt;Finances&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&=
amp;nbsp;&amp;nbsp;=20
  &amp;lt;!--- =3D</FONT> <BR><FONT size=3D2>This Field=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; is a comma delimited list&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;of the =3D</FONT> <BR><FONT =
size=3D2>user's&lt;/FONT&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;BR&gt;&lt;FONT size=3D3D2&gt;finances=20
  ---&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;&amp;nbsp; =
=3D</FONT>=20
  <BR><FONT size=3D2>FROM&amp;nbsp;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  tblCustomers&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;&amp;nbsp; =
WHERE=20
  CustomerID =3D3D=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  #Attributes.CustomerID#&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =3D</FONT> =
<BR><FONT=20
  =
size=3D2>size=3D3D2&gt;&amp;lt;/cfgquery&amp;gt;&lt;/FONT&gt;=3D20</FONT>=
 <BR><FONT=20
  size=3D2>&nbsp; &lt;/P&gt;&lt;BR&gt;</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;P&gt;&lt;FONT =
size=3D3D2&gt;Finances:&amp;lt;br&amp;gt;&lt;/FONT&gt;=20
  &lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;lt;Select Name=3D3D"Finances" =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D"#GetFinances.RecordCount#"=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  multiple&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =
size=3D3D2&gt;&amp;nbsp;=20
  &amp;lt;CFLoop=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  query=3D3D"Finances"&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; =3D</FONT> <BR><FONT=20
  size=3D2>&amp;lt;CFIF=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  ListContains(GetCustomer.Finances,#FinanceName#)&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =
&amp;lt;CFSET=20
  FinanceSelected =3D3D=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  "Selected"&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &amp;lt;CFELSE&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =3D</FONT> =
<BR><FONT=20
  =
size=3D2>size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;=
=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; &amp;lt;CFSET FinanceSelected =3D3D=20
  ""&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &amp;lt;/cfif&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; =
&amp;lt;Option=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; #FiannceSelected# =3D</FONT> <BR><FONT=20
  =
size=3D2>value=3D3D"#FinanceName#"&amp;gt;#FinanceName#&amp;lt;/option&am=
p;gt;&lt;/FONT&gt;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;BR&gt;&lt;FONT size=3D3D2&gt;&amp;nbsp;=20
  &amp;lt;/cfloop&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; size=3D3D2&gt;&amp;lt;/select&amp;gt;&lt;/FONT&gt;=20
  &lt;/P&gt;&lt;BR&gt;&lt;BR&gt;</FONT> <BR><FONT size=3D2>&nbsp;=20
  &lt;P&gt;&lt;FONT size=3D3D2&gt;Mark Armendariz&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;Righteous=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
Design&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;www.sorighteous.com&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;[EMAIL PROTECTED]&lt;/FONT&gt; =
&lt;/P&gt;&lt;BR&gt;</FONT>=20
  <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT =
size=3D3D2&gt;-----Original=20
  Message-----&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D2&gt;From:=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
Gieseman, Athelene=20
  [&lt;A=3D20</FONT> <BR><FONT size=3D2>&nbsp; =3D</FONT> <BR><FONT =
size=3D2>href=3D3D"<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>"&g=
t;<A=20
  =
href=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>&lt=
;/A&gt;]&lt;/=3D</FONT>=20
  <BR><FONT size=3D2>FONT&gt;=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;Sent: Monday, August 07, 2000 6:34 PM&lt;/FONT&gt; =
=3D</FONT>=20
  <BR><FONT size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;To: [EMAIL PROTECTED]&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  =3D</FONT> <BR><FONT size=3D2>size=3D3D2&gt;Subject: =
Multiple=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; value Select&lt;/FONT&gt; &lt;/P&gt;&lt;BR&gt;</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;P&gt;&lt;FONT size=3D3D2&gt;I'm trying to set up a =
CFSELECT=20
  using the SELECTED=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
option.&amp;nbsp; I need=20
  to have&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;the CFSELECT =
=3D</FONT>=20
  <BR><FONT size=3D2>set up as=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
multiple since=20
  more than one option is permitted.&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; size=3D3D2&gt;However, I can never seem to =
get the=20
  SELECTED option to =3D</FONT> <BR><FONT size=3D2>properly=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; highlight&lt;/FONT&gt; &lt;BR&gt;&lt;FONT =
size=3D3D2&gt;the=20
  options that are already =3D</FONT> <BR><FONT size=3D2>stored in =
the=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; record.&amp;nbsp; (In other words, I =
want&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;to =3D</FONT> <BR><FONT =
size=3D2>create=20
  an=3D20</FONT> <BR><FONT size=3D2>&nbsp; edit screen where the =
previously stored=20
  values are preselected&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;in this control.)&amp;nbsp; Any =
thoughts on=20
  what I may =3D</FONT> <BR><FONT size=3D2>be doing=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; wrong?&amp;nbsp; The code for&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;my select =3D</FONT> <BR><FONT =
size=3D2>follows:&amp;nbsp;=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; (Note that ViewGrid is a grid from which the =

  user&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;previously selected this record.&amp;nbsp; I've also =
tried doing=20
  =3D</FONT> <BR><FONT size=3D2>this from=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; a=20
  query&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;with the same =
result -=20
  nothing is=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
selected.)&lt;/FONT&gt;=20
  &lt;/P&gt;</FONT> <BR><FONT size=3D2>&nbsp; &lt;P&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;lt;cfselect name=3D3D"FinanceType" =
size=3D3D"2"=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; =
selected=3D3D"#ViewGrid.FinanceType#"&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT =3D</FONT> <BR><FONT=20
  size=3D2>size=3D3D2&gt;multiple&amp;gt;&lt;/FONT&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; &lt;BR&gt;&lt;FONT size=3D3D2&gt;&amp;lt;option =
value=3D3D"Single=20
  Family =3D</FONT> <BR><FONT size=3D2>Housing"&amp;gt;Single =
Family=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; Housing&amp;lt;/option&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;&amp;lt;option=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp;=20
  =
value=3D3D"501(c)(3)"&amp;gt;501(c)(3)&amp;lt;/option&amp;gt;&lt;/FONT&gt=
;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;option value=3D3D"Hospital=20
  Revenue"&amp;gt;Hospital=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  Revenue&amp;lt;/option&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;lt;option =3D</FONT> <BR><FONT=20
  size=3D2>value=3D3D"Leasehold=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  Revenue"&amp;gt;Leasehold Revenue&amp;lt;/option&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;option value=3D3D"Multifamily=20
  Housing"&amp;gt;Multifamily=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  Housing&amp;lt;/option&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;lt;option =3D</FONT> <BR><FONT=20
  size=3D2>value=3D3D"General=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  Obligation"&amp;gt;General =
Obligation&amp;lt;/option&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;option=20
  value=3D3D"NID"&amp;gt;NID&amp;lt;/option&amp;gt;&lt;/FONT&gt; =
=3D</FONT>=20
  <BR><FONT size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;option value=3D3D"Special=20
  Obligation"&amp;gt;Special=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  Obligation&amp;lt;/option&amp;gt;&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;&amp;lt;option =3D</FONT> <BR><FONT=20
  size=3D2>value=3D3D"Industrial=3D20</FONT> <BR><FONT size=3D2>&nbsp;=20
  Development"&amp;gt;Industrial =
Development&amp;lt;/option&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT =3D</FONT> </P>
  <P><FONT size=3D2>&nbsp; size=3D3D2&gt;&amp;lt;option=20
  value=3D3D"TIF"&amp;gt;TIF&amp;lt;/option&amp;gt;&lt;/FONT&gt; =
=3D</FONT>=20
  <BR><FONT size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;option=20
  value=3D3D"TDD/TC"&amp;gt;TDD/TC&amp;lt;/option&amp;gt;&lt;/FONT&gt; =
=3D</FONT>=20
  <BR><FONT size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;option=20
  value=3D3D"Other"&amp;gt;Other&amp;lt;/option&amp;gt;&lt;/FONT&gt; =
=3D</FONT>=20
  <BR><FONT size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  size=3D3D2&gt;&amp;lt;/cfselect&amp;gt;&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp; =3D</FONT> =
<BR><FONT=20
  =
size=3D2>size=3D3D2&gt;--------------------------------------------------=
--------------=3D</FONT>=20
  <BR><FONT size=3D2>------------&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;--&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;Archives: &lt;A=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
href=3D3D"<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=
>"=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; =3D</FONT> <BR><FONT =
size=3D2>target=3D3D_blank&gt;<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=
>&lt;/A=3D</FONT>=20
  <BR><FONT size=3D2>&gt;&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;To Unsubscribe visit&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;&lt;A=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  =3D</FONT> <BR><FONT size=3D2>href=3D3D"<A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;body=
=3D3D=3D"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;body=3D3D=3D</A></FONT>=20
  <BR><FONT size=3D2>lists/cf_talk"=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; =3D</FONT>=20
  <BR><FONT size=3D2>target=3D3D_blank&gt;<A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;am=3D=
"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;am=3D</A></FONT>=20
  <BR><FONT size=3D2>p;body=3D3Dlists/cf_talk&lt;/A&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; or&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;send =
a message to=20
  =3D</FONT> <BR><FONT =
size=3D2>[EMAIL PROTECTED]=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; with 'unsubscribe' in&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;the body.&lt;/FONT&gt; &lt;/P&gt;</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;P&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp; =3D</FONT> =
<BR><FONT=20
  =
size=3D2>size=3D3D2&gt;--------------------------------------------------=
--------------=3D</FONT>=20
  <BR><FONT size=3D2>------------&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;--&lt;/FONT&gt; &lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;Archives: &lt;A=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
href=3D3D"<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=
>"=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; =3D</FONT> <BR><FONT =
size=3D2>target=3D3D_blank&gt;<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=
>&lt;/A=3D</FONT>=20
  <BR><FONT size=3D2>&gt;&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;To Unsubscribe visit&lt;/FONT&gt;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;&lt;A=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  =3D</FONT> <BR><FONT size=3D2>href=3D3D"<A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;body=
=3D3D=3D"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;body=3D3D=3D</A></FONT>=20
  <BR><FONT size=3D2>lists/cf_talk"=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; =3D</FONT>=20
  <BR><FONT size=3D2>target=3D3D_blank&gt;<A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;am=3D=
"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;am=3D</A></FONT>=20
  <BR><FONT size=3D2>p;body=3D3Dlists/cf_talk&lt;/A&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; or&lt;/FONT&gt; &lt;BR&gt;&lt;FONT size=3D3D2&gt;send =
a message to=20
  =3D</FONT> <BR><FONT =
size=3D2>[EMAIL PROTECTED]=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; with 'unsubscribe' in&lt;/FONT&gt; =
&lt;BR&gt;&lt;FONT=20
  size=3D3D2&gt;the body.&lt;/FONT&gt; =3D</FONT> <BR><FONT=20
  size=3D2>&lt;BR&gt;&lt;FONT=3D20</FONT> <BR><FONT size=3D2>&nbsp; =
=3D</FONT> <BR><FONT=20
  =
size=3D2>size=3D3D2&gt;--------------------------------------------------=
--------------=3D</FONT>=20
  <BR><FONT size=3D2>--------------&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;Archives: &lt;A=3D20</FONT> <BR><FONT =

  size=3D2>&nbsp; href=3D3D"<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=
>"=3D20</FONT>=20
  <BR><FONT size=3D2>&nbsp; =3D</FONT> <BR><FONT =
size=3D2>target=3D3D_blank&gt;<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=
>&lt;/A=3D</FONT>=20
  <BR><FONT size=3D2>&gt;&lt;/FONT&gt;=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  &lt;BR&gt;&lt;FONT size=3D3D2&gt;To Unsubscribe visit =
&lt;A=3D20</FONT> <BR><FONT=20
  size=3D2>&nbsp; =3D</FONT> <BR><FONT size=3D2>href=3D3D"<A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;body=
=3D3D=3D"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;body=3D3D=3D</A></FONT>=20
  <BR><FONT size=3D2>lists/cf_talk"=3D20</FONT> <BR><FONT =
size=3D2>&nbsp; =3D</FONT>=20
  <BR><FONT size=3D2>target=3D3D_blank&gt;<A=20
  =
href=3D"http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&amp;am=3D=
"=20
  =
target=3D_blank>http://www.houseoffusion.com/index.cfm?sidebar=3D3Dlists&=
amp;am=3D</A></FONT>=20
  <BR><FONT size=3D2>p;body=3D3Dlists/cf_talk&lt;/A&gt;=3D20</FONT> =
<BR><FONT=20
  size=3D2>&nbsp; or send a message to [EMAIL PROTECTED] =
with=20
  =3D</FONT> <BR><FONT size=3D2>'unsubscribe' in=3D20</FONT> <BR><FONT =
size=3D2>&nbsp;=20
  the=20
  =
body.&lt;/FONT&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;=
</FONT>=20
  </P>
  <P><FONT =
size=3D2>------=3D_NextPart_000_0242_01C0015B.7347C930--</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&am=
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&am=
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_025D_01C0015C.FC0970B0--

------------------------------------------------------------------------------
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