want to hide bcc field in outlook 2010 email using vba
问题 I'm trying to hide the Bcc field in an email that's currently being drafted in Outlook 2010 using VBA. The reason to hide it is that I'm using code to add an email address to Bcc which shows the field, but then I want the real-estate on the screen back. Here's what I have so far (in ThisOutlookSession): Sub add_bcc_to_cur_email() Dim cur_msg As MailItem Set cur_msg = ActiveInspector.CurrentItem cur_msg.BCC = "first.last@domain.com" 'this works correctly cur_msg.GetInspector.CommandBars