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.
0
votes
0answers
5 views
auto download outlook attachments without using VBA/Macro
Is there any way to auto download outlook attachments without using vba/macro?
I tried to achieve using Rule but no luck.
My outlook allows Digitally Signed macros only.
I tried by self signed ...
1
vote
1answer
16 views
How to call an Microsoft office outlook Macro from C#
I have a Macro which fetches some data into the excel file from the Microsoft office outlook (inbox or any other folder). To get the excel file I have to manually run the Macro in the outlook. Is ...
0
votes
1answer
12 views
Outlook VBA AppointmentItem.Move creating a copy
When using the Move method on an AppointmentItem in an Outlook macro, I lose the ability to receive updates because it is creating a copy of the item instead of truly moving it. This behavior causes ...
0
votes
1answer
19 views
Create an Outlook plugin using VS Express Edition
So I am able to launch my addin by adding this to the "ThisOutlookSession" "macro". But I get a security warning every time I open Outlook and I can't deploy this to other users.
Private instance As ...
0
votes
0answers
13 views
Outlook 2007 VBA print all emails in folder - One print job
When printing a large number emails on a shared network printer, often your jobs get intertwined with other peoples jobs. What I want to do is have a VBA (compliant without outlook 2007) that allows ...
1
vote
1answer
16 views
Regular Expression to match string after ambiguous marker
I'm trying to match passport numbers in emails I receive in Outlook. Basically, the marker can be any of the following formats:
Pass 1234567
Pass, 11223344
Pass: 1234567
Passport # is HA12345678.
...
0
votes
0answers
22 views
Outlook 2010 macro to run rules
I got the below code from the web to run outlook 2010 rules. I'm just trying to run only one rule at a time by selecting it from the combobox but I couldn't figure it out since it runs all rules as ...
0
votes
1answer
28 views
Add automatically CC In the new message in outlook using VBA doen't appear?
when i click new email outlook the automatically cc email doesn't appears form VBA code in cc text area please help me in doing this i already add the CC using VBA in Application_ItemSend event but it ...
0
votes
0answers
33 views
Invalid Qualifier for String.Add in Outlook VBA
You all have been so helpful, and I was wondering whether I might trouble you a bit more. I have nearly completed my conversion from VB.net to VBA for Outlook, and in order to complete that, I need ...
0
votes
1answer
24 views
outlook System.Runtime.InteropServices.COMException was unhandled ErrorCode=-2147467259
I am getting a list of all the email address from Outlook . The following code works. But intermittently it keeps giving me the following error after around 320 results.
I get a COM Exception. It ...
0
votes
0answers
66 views
Outlook 2007 Code For Textbox in Task From Combobox in Assigned Contact
When I created the Task form, in the Page called P2, I added to the Page P2 from the Control Toolbox two text boxes.
In my default form for contacts, I have added a Combobox and in the Value area as ...
0
votes
0answers
17 views
Type mismatch line n° 1 accessing outlook task userproperties
Trying to loop through userproperties of outlook 2010 tasks, but I get some kind if script error message or warning saying:
Type mismatch "opensms'
Line n°: 1
The reference 'opensms' seems ...
0
votes
1answer
16 views
MS Outlook 2010 .SenderEmailAddress returns a huge string of characters
I've searched and searched for an answer so I'll post this here. I'm trying to create a macro that will move 2 week old messages from my inbox to a specific folder I created for each of my coworkers. ...
0
votes
0answers
14 views
VBA Outlook Create New Rule When Error: This store does not support rules. Could not complete the operation
I am confused about the Rules object in Outlook. I understand that there can be multiple stores per namespace. My outlook application currently contains 3 stores with display names of:
Outlook ...
-1
votes
0answers
10 views
Sharing a Custom Report Spam button with organization [closed]
I work at the email help desk and we report spam to our handler. In order to do this people send us a copy of the spam email as an attachment.
What I am trying to do is make a custom button in ...
0
votes
1answer
56 views
VBA - Outlook 2010 - Using ReceivedTime of email in calculation constrained by work week and office hours
I'm trying to develop a module in Outlook that can use the ReceivedTime of an email and then add x hours to it to give a 'response time'. The hours added though have to be within the working week ...
0
votes
0answers
35 views
Outlook Appointment - ItemChange and ItemRemove Event
I would like to sync appointment items from one Calendar to another. I implemented a ItemChange Handler which updates the Appointments based on a specific UserProperty. Now I thought when I delete an ...
0
votes
1answer
72 views
Visual Basic Compile Error - Invalid Character
I got a VB SCRIPT off the internet to create new mail alerts for secondary email accounts in Outlook(2010).
Now this is the first part of the code, and when running Outlook, it gives me the ...
0
votes
0answers
36 views
Outlook.Application on Access Database
I am trying to run this code but the system does not respond to any of the inputs. Could you please help me with this:
Private Sub SendMail_Click()
On Error GoTo Err_SendMail_Click
If Me.Dirty Then
...
1
vote
1answer
30 views
Savings Attachments from an email that was sent as an Email (i.e. MSG)
I receive a lot of emails which include .msg attachments. I usually have to manually open the email, then open the .msg attachment to get to the .pdf file which is attached. I often receive over 200 ...
1
vote
1answer
65 views
Accessing User Defined Fields in Outlook
So, I have a custom email form/message like below and I want to access the "Doc Title:" field value to insert it into the body of the email.
I currently have this code;
Function Item_Send()
...
0
votes
0answers
58 views
VBA Automatically Saving incoming emails from outlook
I am trying to write a small macro program for outlook.
The Program Should automatically save the text of incoming emails as a text file.
I found large pieces of code and tried to make this work but ...
-2
votes
1answer
84 views
I'm trying to bypass outlook alert using sendkeys, is this code correct? [closed]
Sub Mail_Workbook()
Dim wb As Workbook
Set wb = ActiveWorkbook
Application.Wait (Now + TimeValue("0:00:06"))
Application.SendKeys "{TAB}", "false"
Application.SendKeys "{TAB}", "false"
...
1
vote
1answer
99 views
Outlook VBA to create new draft email for each Contact Group in contact list
Is there a VBA script that will
Create a draft email for each Contact Group
With the Contact Group's contacts in the "TO" field
With a uniform Subject
With a uniform Body
...and bonus if the body ...
0
votes
1answer
71 views
Outlook Forms: Importing / VLOOKUP Data from Excel?
I am a bit new to Outlook forms, but not to VBA overall - nor HTML/Web design of forms. However, my problem is finding a way to combine the two.
I am trying to design a form for users to fill out, ...
1
vote
1answer
75 views
Control already created Outlook message from excel VBA
longtime reader, first time messenger (not my first time making a bad joke though),
I would like to know if it is possible to gain control of an Outlook email message that has already been created. ...
0
votes
1answer
76 views
No existing macros availble when Excel is opened from Outlook macro
I have a macro in Outlook, and I have it opening an Excel file that is saved on my desktop. Once the file is open, I would like to run a macro that I have written in excel, but none of my excel ...
1
vote
0answers
64 views
Macro to send two different mail when a cell reaches two different values (right)
Excuse me for my English.
I offer to you my best compliments for this very useful and well done website.
Now I'm developing a program very complex Excel in which I predicted the attached Code Macro, ...
0
votes
0answers
17 views
ActivePersonRecipient.Resolve returning FALSE even though the alias is present in outlook
i am trying to extract outlook names corresponding to aliases. however for two aliases ActivePersonRecipient.Resolve returns false even though the recipient is present in outlook
1
vote
1answer
60 views
Object Required VBA Outlook
I'm not sure what it doesn't like about my code here, I'm experienced in .NET, but VBA is new to me. I know when called functions not to do myFunction('args') and do myFunction args instead, but I ...
0
votes
1answer
69 views
Add Recurrence event on outlook 2010 from Excel
I have my friends date of birth in excel with name and dob column. I have to import the birthday events in my outlook calender with reminder of every year.
I tried with birth date as start date and ...
0
votes
0answers
50 views
VBA Outlook 2010 SharePoint 2010 GetUserLoginFromEmail
Given an email, I would like to get the SharePoint ID (in List > User > ID; Person or Group)
Public Function GetUserFromEmail(ByVal Email As String) As String
Dim EmailXML As String
...
1
vote
0answers
61 views
VBA to forward an email
I have designed a macro to forward an email. The below code drafts a forward email, adds some information in the body, retains the original content at the bottom of the email. But the only problem is, ...
0
votes
1answer
63 views
outlook shared calendar recurring item between the date specified range
Following is my code where i can print the number of recurring items in the shared calendar folder. Now i want to take the date range from the user say SDate and EDate and want to check for the ...
-1
votes
1answer
50 views
Filter on Appointment,Meeting and Online Meeting items in OutLook-2010
I want to write a macro in VBA that will give me all the items from the above mentioned category.
I can be able to find all the AppointItems. How can i find the others?
Any Idea?
Set ...
0
votes
0answers
33 views
Outlook vbscript event management
I don't fully seem to understand Outlook vbscript events.
I've added this method.
Sub Item_CustomPropertyChange(ByVal Tier)
...
End Sub
That listen to all custom property changes. The problem ...
0
votes
2answers
71 views
adding multiple messgeboxes values to single messagebox in vba
I have this code with me where i can display the message when every outer loop ends. I want to catch all these messages in suppose array or soome list like structure and then at the end want to ...
1
vote
1answer
141 views
Using the .Restrict method in Outlook VBA to filter on single recipient email address
I've been coding in VBA for Access and Excel now for several years, but am making first forays into Outlook, and am struggling to find an answer to this.
Essentially I have code in Access that gets ...
0
votes
1answer
514 views
Office 2010 VBA - pass SenderEmailAddress to Excel workbook and run Excel macro to send email
I've been asking people that are more familiar with VBA than I with not the kind of luck that I am hoping for. Here's what I need:
incoming email with "Stats1", "Stats2", "Stats3" (etc.) in the ...
0
votes
1answer
380 views
Outlook macro to collect/extract data from “Subject field” of numerous messages into a text file
Our firewall users send messages requesting unblocking certain websites that they believe shouldn't be blocked. Their messages subject fields contain such websites urls. In fact, one url is sent per ...
0
votes
0answers
59 views
Outlook VBA Exchange User Get “Last Active” Time
I am using VBA fairly intensively to utilize the Global Address List (GAL) within Outlook and retrieve a large variety of information.
I cannot figure out how to retrieve the "last active" ...
0
votes
2answers
549 views
Extract outlook message body text with VBA from Excel
I have a huge number of Outlook .msg and Outlook .eml files saved to a shared network folder (ie outside of Outlook). I am trying to write some VBA in Excel that extracts the Subjects,Sender, CC, ...
0
votes
3answers
163 views
Import .msg format email information (including Subject, Sender, CC, Receiver, SentDate, etc) to excel cells
I am a newbie of VBA. I would be appreciate if anyone could kindly provide a Excel or Outlook VBA script for My task.
The task in relatively simple. I have more than 4000 .msg format files (outlook ...
0
votes
1answer
60 views
Run macro when email is sent
I am trying to write a macro that looks at the subject line of an email whenever the user hits the Send button.
However I can't find any documentation that listens to that button. For right now I am ...
0
votes
1answer
120 views
Outlook.Application object using vb.net
A Quick question.
automating outlook using vb.net through Outlook.Application object is causing a problem.
below is part of the code:
Dim objOLApp As Outlook.Application
.
.
.
.
Call ...
0
votes
1answer
224 views
Excel 2010 VBA .send error
I have the following code, which works FINE for 10 macros prior to this one (I use a call x, call Y macro), but this one does not want to work.
Sub Send_Tips()
Application.DisplayAlerts = False
Dim ...
1
vote
1answer
80 views
excel sheet range append of each user in single worksheet
I have little-bit confusion in my VBA for loop. I want to append each user data in a single worksheet. Here is my for loop code...
Dim NextRow As Long
For Each objNavFolder In ...
1
vote
1answer
336 views
Calendar data export to excel file
I want in outlook 2010 to pick a calendar folder (which is shared by my colleagues) and export all the contents to an excel file.
Here is I am going to share my half and self written code that will ...
0
votes
3answers
131 views
VBA code to reference my inbox in my archive - CLOSED
I have this code which I can used to get to any folder in my primary inbox or inbox subfolder.
Does anyone know how to reference my archive folders or sent items? The archive folder is saved as "My ...
0
votes
2answers
286 views
vba outlook, move mailItem to specif folder
Does someone help me in this small script I am triyng to implement in vba?
What appends is that the loop randomly stops and I can not to move all the mail in "archivio" folder.
Private Sub ...

