Tagged Questions

Outlook VBA (Visual Basic for Applications) refers to programming Outlook's native object model using Outlook's implementation of VBA. Since Outlook has no macro recorder, this tag is for questions about writing VBA from scratch and interacting with the object model programmatically.

learn more… | top users | synonyms

6
votes
0answers
177 views

Alternatives for replacing text selection under Outlook with custom HTML code

I need to replace an user selection while editing an Outlook e-mail with my custom HTML code. I tried two approaches: Using the Clipboard In HTML mode. Getting the Word.Range from the ...
3
votes
1answer
102 views

Issue with moving email items from one pst to other via VBA Code

I am trying to move email from one pst to other, base on certain criteria. Here, below is sample code gotten from here. The important part of the code, which moves message, is as below: If ...
3
votes
2answers
88 views

Using replace in VBA

I've got about 17k emails containing orders, news, contacts etc. going back 11 years. Through the emails the users email addresses have been shodily encrypted to stop crawlers and spam by change the @ ...
3
votes
1answer
191 views

VBA can't send calendar appointment

When I manually make a calendar reminder/appointment, I can then click "Invite Attendees" and chose the people to invite and then click "Send" and everyone will receive that calendar ...
3
votes
0answers
355 views

Debugging an Outlook 2007 script fired by a rule

I'm trying to debug an Outlook 2007 VBA script that's fired by a rule. I've set a breakpoint in the script but it doesn't get hit. The script is actually a Sub in the ThisOutlookSession object. When ...
3
votes
3answers
2k views

Copy email to the clipboard with Outlook VBA

How do I copy an email to the clipboard and then paste it into excel with the tables intact? I am using Outlook 2007 and I want to do the equivalent of "Click on email > Select All > Copy ...
3
votes
2answers
467 views

Gmail like “Send and Archive” in Outlook. How to get to the “parent” email when replying

Responding to an email with the subject line "test", with this code... Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) If TypeName(Item) = "MailItem" Then Debug.Print ...
3
votes
1answer
2k views

Can I iterate through all Outlook emails in a folder including sub-folders?

I have a folder which contains a number of emails and sub-folders. Within those sub-folders are more emails. I'd like to write some VBA which will iterate through all emails in a certain folder, ...
3
votes
3answers
4k views

Permanently Delete MailMessage in Outlook with VBA?

I am looking for a way to permanently delete a MailMessage from Outlook 2000 with VBA code. I'd like to do this without having to do a second loop to empty the Deleted items. Essentially, I am ...
2
votes
1answer
51 views

How to add default signature in Outlook

I am writing a VBA script in Access that creates and auto-populates a few dozen emails. It's been smooth coding so far, but I'm new to Outlook. After creating the mailitem object, how do I add the ...
2
votes
1answer
78 views

Word 2010 VBA - Manipulating Numbered Lists

I'm trying to take a numbered list created in Outlook and manipulate it based on the top-level list items. Unfortunately, the only way I've found to manipulate the list is through the ListParagraph ...
2
votes
2answers
98 views

Outlook VBA timed closure of a userform

I'm trying to set up a userform that will appear, remain for 10 seconds, and then close automatically. I have done this before in Excel, using the OnTime method: Sub Example() ...
2
votes
1answer
45 views

How to use VBA in MS Office 2003 to add members to a Exchange distribution list

My company is using Office 2003. I want to programmatically add members to a distribution list in the GAD ("Global Address Book") on an exchange server. VBA would be most convenient, but anything ...
2
votes
1answer
101 views

Using visual basic to access subfolder in Inbox?

Dim olApp As Outlook.Application Dim objNS As Outlook.NameSpace Set olApp = Outlook.Application Set objNS = olApp.GetNamespace("MAPI") Set myOlItems = objNS.GetDefaultFolder(olFolderInbox).Items I ...
2
votes
1answer
171 views

Outlook 2007 - VBA macro in NormalEmail.dotm

I have a Word 2007 template that I use as Normal.dotm, which has corporate theme, styles, etc., plus a tiny bit of macro code that overrides the default behaviour of the bullet & number buttons on ...
2
votes
1answer
114 views

VBA code to invoke “Clean Up Folder” in Outlook 2010?

Does anyone know the VBA code to invoke the "Clean Up Folder" Outlook 2010 command on the right-click menu when right-clicking on a folder? I have gotten this far in VBA code to get to the folders I ...
2
votes
1answer
116 views

Getting messageID from email in Outlook VBA 2003

Is there a easy way to get the current shown (preferably selected) message-ID via VBA ? without having to buy Redemption or some other package.. I need to message ID so I can make a link to a ...
2
votes
1answer
39 views

Text Documents Outlook 2007

I was wondering if there is any way to read informations out from a text file with VBA in Outlook 2007. Thanks for attention
2
votes
3answers
96 views

Get Inboxes from Outlook

I configured two Exchange accounts in Outlook 2010, however I cant find out how to get to Inbox of the second account. Session.GetDefaultFolder() always return the first one. Even enumerating ...
2
votes
1answer
169 views

how to cancel the vba followhyperlink?

I have an excel worksheet with some hyperlinks. Some of them are email addresses. When a user clicks a hyperlink, I determine whether or not it is an email, using Worksheet_FollowHyperlink(ByVal ...
2
votes
3answers
187 views

Outlook attachments data dump within date range

I built a script that downloads all the attachments in a particular outlook inbox, but I need to modify it so it will only grab emails that fall within a particular date range. Here's my code for ...
2
votes
2answers
813 views

My outlook VBA code drops the odd email

I put together some VBA code for Outlook 2007 which has been working predominantly fine. Its basically designed to check incoming messages and store the subject, body etc into a database and the ...
2
votes
1answer
323 views

Adding attachment to mail merge to email

I am trying to create a mail merge to email which also adds an attachment. I am following a procedure outlined in the article http://word.mvps.org/FAQs/MailMerge/MergeWithAttachments.html The ...
2
votes
1answer
397 views

Opening Word (from Outlook VBA) in Safe Mode

I have a Word document as an attachment to an email that I need to get some data out of to pass to a URL. To do this I'm saving the attachment to the local temp file, then opening the document, and ...
2
votes
2answers
326 views

Ensuring the contacts in a Distribution List are displayed with both name and email address

How can I ensure the contacts I add to an Outlook distribution list are displayed with both name and email address? These contacts may not exist in any other address book, just the distribution list. ...
2
votes
1answer
716 views

Auto accept outlook VBA

Is there a VB macro or some sort of add-on out there that will allow me to auto accept invitations in outlook by sender or by folder? I was thinking about doing a VB script for this but I don't want ...
2
votes
1answer
447 views

How do I get the Outlook VBA “FreeBusy” method to return the truth?

I've got a simple bit of Outlook VBA which looks up the FreeBusy status of a number of meeting rooms to determine whether or not they are free. In the last couple of days, the following code: ...
2
votes
2answers
995 views

In Outlook VBA, how can I change the subject so it changes the subject in the Explorer Pane?

When I receive an email, I'm manipulating the subject line so it is more readable and "conversations" generated by a certain auto-emailer actually contain all of the thread. I'm able to change the ...
1
vote
1answer
57 views

export table to outlook from excel that is blackberry friendly

So I gathered from different places on the internet some code to export a table into outlook and send it out automatically and have just noticed that the email is not really blackberry friendly ...
1
vote
1answer
40 views

How do I obtain the Conversation ID from a selected email message?

I'd like obtain the Conversation ID (which is in the header of a message). I would assume that in the outlook library it is in the MailItem class and the ConversationID member. I am just at a loss on ...
1
vote
0answers
54 views

consolidate sendername,to ,cc,bcc,subject from outlook sent items to excel

I am trying to consolidate sendername, to ,cc,bcc,subject from outlook sent items to excel. I wrote the below code. Its working fine for subject, not working for rest of the option like to ,bcc, ...
1
vote
2answers
240 views

Send an email from Excel 2007 VBA using an Outlook Template & Set Variables

I have a list of data, let's say client information (Name, Email, Amount Owing etc.), stored in an Excel worksheet . My aim is to click a button in Excel and send each client their information in an ...
1
vote
1answer
118 views

Loop Through PSTs in Outlook 2003 with VBA

In Outlook 2007, I am able to loop through mails stores, including PSTs, using code like this: Dim stores As Outlook.stores Set stores = objNamespace.stores Dim store As Outlook.store For Each store ...
1
vote
1answer
115 views

vba outlook event moving email

I search a way to get the event of a moving item/email in outlook. can we use an Inspector? or maybe there's an event handler like itemsent or newmail? tank you More Details : I have 4 or more ...
1
vote
1answer
83 views

outlook event newMail (newItem)

I'm working with outlook 2003 I search a way to get the event when a new mail is created (when the window of new mail is created) Note: I search every way to add a menu to new mail window)
1
vote
1answer
155 views

Processing an RSS Feed using Outlook VBA Macro

With much frustration and a lot of google-ing I have figured out how to read in an RSS Feed folder. It's not idea, but apparently the only way to do things, due to outlook's setup. What I want to do, ...
1
vote
0answers
178 views

Change Sender Email Address in Outlook 2003

My company has changed my email address :-( I have thousands of emails in Outlook that use the old email address, but as far as Outlook is concerned, these are from a different person. This is ...
1
vote
1answer
96 views

Like item in VBA?

I was wondering if there is something like a "Like" in VBA for Outlook 2003/2007 just like the LIKE in SQL... For Example you have multiple users in a Network and everyone has another Mailbox name. ...
1
vote
1answer
107 views

Outlook 2007 Task Saving Problems

I'm very new with VBA in Outlook. So I'm trying to manipulate the Save Button for the Task Formulars. I was wondering how to make a "different" Save Button wich actually does the same but with some ...
1
vote
0answers
51 views

Alternate to ShowCategoriesDialog to show most recent categories

I wrote a macro that prompts me to add a category to an outgoing e-mail if there are none (saves time when looking for 2-year-old e-mails). I noticed that if I categorize an e-mail manually without ...
1
vote
1answer
160 views

Outlook: How to refresh folder after setting “Categories” on mails

I wrote some code to parse the subjects of mails in a certain folder. The parsed stuff gets written to the Categories-field of the mail-object. According to debugging this works nicely. The problem ...
1
vote
1answer
358 views

Retain formatting when copying from word to outlook

I have a code which replaces the text of certain format into a hyperlink. This code works during an incoming email. Incoming email -> copy the email to word editor(formatting lost) -> make necessary ...
1
vote
4answers
406 views

Send individual emails to predefined set of people with all files in a folder

I have a bunch of files that get updated in the folder "C:\Email". These are PDF files that are created on a weekly basis. This could number from anywhere between 50 to 500 or more files. The file ...
1
vote
1answer
278 views

Conditionally Prevent Outlook from Sending Email Based on From and Recipient Addresses

I have multiple mail accounts setup in Outlook 2007 (e.g., johndoe@domainA.com, johndoe@domainB.com, etc.). Occasionally, usually as the result of the Auto Complete feature, I will mistakenly send ...
1
vote
1answer
439 views

Is there a SaveAs dialog for Outlook VBA

I want to save a mail attachment with a save file dialog. Is it possible to do this with VBA and outlook?
1
vote
2answers
149 views

Are there any workarounds for the security messagebox when using Outlook VBA to send an email?

I'm writing code to automate sending an email from Excel, and whenever the send function of Outlook is executed, there is a warning/security messagebox that pops up which we have to approve before the ...
1
vote
1answer
278 views

Outlook macro to prompt user info

I want to create a macro for Outlook that will prompt the user to enter their name in an input box, when they hit Send. Once they input the info and click Ok, I want to Append the name to the end of ...
1
vote
0answers
359 views

Deploy Outlook UserForm

I made an Outlook user form which I intend to give out to some colleagues. However I am a bit unhappy with the installation procedure, which goes approx. like this: allow unsigned macros open VB ...
1
vote
1answer
455 views

Find underlying Object Type for Outlook MeetingItem

I am using VBA to scan MAPIFolders for Items created before a certain date in order to move them to an archive PST. Normally Item.CreationDate is a good hook to scan for "old" Outlook items, but for ...
1
vote
1answer
379 views

How do I get the selected text from a WordEditor Object and change it's color?

I'm trying to use the WordEditor object to modify the color of the selected text (Outlook VBA) but i'm unable to find documentation or examples on how to do it. Any ideas? I don't want to use the ...

1 2 3 4