Outlook Form: Click on CheckBox and Auto add e-mail to BCC in message area
Hi,
I am very new to VB. As in just looked at a basic explanation a few hours ago. Kind of lost. I'm computer literate but this is all new to me. I'm hoping someone can help me out and it would be much appreciated.
I'm setting up a one off Outlook Form with a few basic functions. Most of it is simple textboxes and checkboxes.
For 3 checkboxes on page 2 if 1,2,or 3 of them are checked, I wanted it to automatically add a particular e-mail address to the BCC, recipientcontrol1, in the Message section on Pg 1. And if someone made a mistake in checking 1 and they unchecked it then that e-mail address would disappear. It's for various people to use so wanted to automate some things. Is this possible?
Thank You.
Re: Outlook Form: Click on CheckBox and Auto add e-mail to BCC in message area
Re: Outlook Form: Click on CheckBox and Auto add e-mail to BCC in message area
Welcome to the Forums. :)
Which version of Outlook are you running?
Is this One-Off form based upon which form? IPM, IPM.NOTE, etc.
You need to write VB Script code behind the form to create the events and evaluations.
Re: Outlook Form: Click on CheckBox and Auto add e-mail to BCC in message area
Hi,
Thanks. I'm using Outlook 2003.
I'm not sure which class that would be with the IPM and all that. I was doing this at work and don't have it in front of me right now. I can also show the pages when i have access to it. I used 'Message' from the standard templates folder to start designing the one off form with the toolbox. I thought this was going to be a simple Checkbox and Textbox form and then they started requesting some automatic features. Just started reading up on some vb script. I'm sure it's a simple few lines of script but just not getting the hang of it. I was trying parts of examples to try and get something going but I think it's all wrong. Any help would be appreciated.
Thanks again.
Re: Outlook Form: Click on CheckBox and Auto add e-mail to BCC in message area
The 'Message' default form is the IPM class form.
Try this out for your first checkbox.
VB Code:
Sub CheckBox1_Click()
MsgBox "Check/UnCheck"
End Sub