NetOffice to add a custom form field in outlook new mail window -


problem : not able find solution add custom form field in outlook new mail window. using netoffice , far have implemented use user accounts outlook.

required guidance how add custom drop-down button custom text right under send mail button.

thanks in advance.

cheers! farhan

i believe in net office need declare variable mapi folder relevant form want start altering, , go through folder's view collection. start done in vba can found here:

http://www.vbforums.com/showthread.php?492714-resolved-outlook-programmatically-add-user-defined-field

this link detailed making of custom field, , adding appropriate folder view default form. can adapt vba code in above link netoffice, since uses same methods step-through, such as

    dim _outlookapplication outlook.application     dim olnamespace outlook._namespace = _outlookapplication.getnamespace("mapi")     dim olfolder outlook.folder = olnamespace.getdefaultfolder(oldefaultfolders.olfoldercontacts)     dim olview outlook.view 

good luck!


Comments