e-mail prompts in checkboxes

  • Thread starter Thread starter Lauren B.
  • Start date Start date
L

Lauren B.

I have the event procedure for several check boxes set so that when it is
clicked by a user, an e-mail prompt to the appropriate address opens.
However, if the box is unchecked, the same e-mail prompt opens, and an error
message is received if it is closed without sending a message.

Is there a way to have an e-mail prompt open when a box is checked but, when
it is unchecked not have the prompt open.

Thank you in advance for your assistance.

*Lauren
 
Lauren B. said:
I have the event procedure for several check boxes set so that when it is
clicked by a user, an e-mail prompt to the appropriate address opens.
However, if the box is unchecked, the same e-mail prompt opens, and an error
message is received if it is closed without sending a message.

Is there a way to have an e-mail prompt open when a box is checked but, when
it is unchecked not have the prompt open.

Thank you in advance for your assistance.


How are you producing the prompt? Macro or VBA code? With VBA you would simply
test the value of the Checkbox.

If Me.CheckBoxName = True Then...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top