D
daphnejean77
I have a code to cause frames to disapear/reappear when a checkbox is marked
or unmarked. I am using this code for a custom email form I am designing.
The frames are successfully staying hidden and reappearing when asked to,
however once I send the email, all frames are visible to the receiver. How
can I modify this code or the frames to make the correct frames stay hidden.
Here is the code I have been using:
Sub CheckBox3_Click()
Set myinspector = Item.GetInspector
Set myPage1 = myInspector.ModifiedFormPages("Message")
Set frame2 = myPage1.Controls("frame2")
Set Checkbox3 = myPage1.Controls("CheckBox3")
frame2.Visible = Checkbox3.Value
End Sub
Thank you,
Daphne
or unmarked. I am using this code for a custom email form I am designing.
The frames are successfully staying hidden and reappearing when asked to,
however once I send the email, all frames are visible to the receiver. How
can I modify this code or the frames to make the correct frames stay hidden.
Here is the code I have been using:
Sub CheckBox3_Click()
Set myinspector = Item.GetInspector
Set myPage1 = myInspector.ModifiedFormPages("Message")
Set frame2 = myPage1.Controls("frame2")
Set Checkbox3 = myPage1.Controls("CheckBox3")
frame2.Visible = Checkbox3.Value
End Sub
Thank you,
Daphne