No, this can't be done with a formula. It needs to be done with VBScript code behind the published form, using the CustomPropertyChange event. See
http://www.outlookcode.com/article.aspx?ID=38
"aflamal" <aflamal@yahoo.it> wrote in message news:OJJR4FfLIHA.4912@TK2MSFTNGP02.phx.gbl...
> Hello,
>
> I’m working with OUTLOOK 2003 and I want to customize the CONTACT FORM.
> More precisely, in the CONTACT FORM, I create two fields using the FIELD CHOOSER.
> 1. Field name: “FTP”. It’s a CHECKBOX.
> 2. Field name“FTP Login”. It’s a TEXTBOX.
>
> I want to do the following action
>
> If field FTP is enabled then the field “FTP Login” must be enabled
> If field FTP is not enabled then the field “FTP Login” must be disabled.
>
> At the beginning, when I open the form I want
> FTP disabled
> FTP Login disabled
>
> In other words,
> IF CHECKBOX.VALUE=TRUE
> THEN TEXTBOX.ENABLE=TRUE
> ELSE
> TEXTBOX.ENABLE=FALSE
>
> Do you have an idea how I can do it? With a formula?
> Thnks
> afl