Critical factors:
1) Will this be the only CC addressee or could there be others?
2) Outlook version?
3) Is the check box bound to an Outlook property or unbound?
In the meantime, you might find the information at
http://www.outlookcode.com/d/formcontrols.htm and
http://www.outlookcode.com/d/propsyntax.htm useful.

Signature
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
>I have a New user request form that needs to be sent to
> the applications group if a certain app is required. I
[quoted text clipped - 4 lines]
> Dorian Clinton
> dclinton.sunrise@nocoha.org
Dorian Clinton - 23 Sep 2004 20:28 GMT
The answers to your questions are as follows:
1) There will be only one recipient (either a single
person or a distro list depending on the group's
preference)
2) Outlook 2003 SP1
3) The checkbox is bound to a user defined field
[HlthPro], but no initial values are set, and no
validation formulae are set.
Thanks for your help,
Dorian Clinton
dclinton.sunrise@nocoha.org
>-----Original Message-----
>Critical factors:
[quoted text clipped - 17 lines]
>
>.
Sue Mosher [MVP-Outlook] - 24 Sep 2004 13:11 GMT
Try this code in the Item_Send event handler:
Function Item_Send()
If Item.UserProperties("HlthPro") Then
Item.CC = "someone@somewhere.com"
End If
End Function

Signature
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> The answers to your questions are as follows:
> 1) There will be only one recipient (either a single
[quoted text clipped - 9 lines]
>>> want to autopopulate the CC field w/a recipient if a
>>> specific CheckBox control is checked (-1) on the form...