![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
I have created some custom forms within outlook and am now looking to add
some features. One of the features I have been able to add is a checkbox that once clicked will stamp a time and user name into a textbox field. I am now trying to modify the below script/code to have the checkbox fill in the CC line with the appropriate email addresses. So far this is not working and I am at a loss, please help! Sub CheckBox1_Click() Dim objNS Dim objPage Dim objControl Set objNS = Application.GetNamespace("MAPI") Set objPage = Item.GetInspector.ModifiedFormPages("Order Tracking") Set objControl = objPage.Controls("TextBox15") objControl.Text = Now() Set objControl = objPage.Controls("TextBox16") objControl.Text = objNS.CurrentUser Set objControl = Nothing Set objPage = Nothing Set objNS = Nothing End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
save this password checkbox | Mark B | Outlook - Installation | 0 | February 22nd 07 09:21 PM |
How do I Autopopulate an Outlook form from an Excel Sheet? | AttyBhai | Outlook - Using Forms | 1 | September 19th 06 02:18 PM |
outlook checkbox merge | adubb | Outlook - Using Forms | 1 | May 27th 06 03:14 PM |
if checkbox is checked then... | andy | Outlook - Using Forms | 3 | April 5th 06 10:45 PM |
Creating new field | Michael E. | Outlook - Using Forms | 1 | March 7th 06 07:34 PM |