Microsoft Outlook 2010 is the release of Microsoft's popular Outlook platform that debuted in July 2010. New features in this edition include ribbon interfaces in all views, a programmatically accessible Navigation Pane, and improved social networking features.
Questions tagged [outlook-2010]
949 questions
0
votes
1 answer
Attachments are missing in outlook 2010
I wrote some VBA macro to download all the attachments of my outlook.I used the following code to achieve that:
Public Sub SaveAttachments()
Dim objOL As Outlook.Application
Dim objMsg As Outlook.MailItem
Dim objAttachments As…

Rama Rao M
- 2,961
- 11
- 44
- 64
0
votes
2 answers
Moving emails to folders based on SenderName
I have the following Visual Basic script that should move emails in my Inbox to specific folders but when I run it, nothing happens. I am very new to VBA so am a little confused as to why. Does anything stick out, or do you have any suggestions as…

Dryden Long
- 10,072
- 2
- 35
- 47
0
votes
2 answers
vbscript get last line in text
I'm trying to get the last line in a .HOL file.
It will get the last line but every time you run the script, it stacks the previous lines.
Dim lastLine
Dim objFile
Dim objFSO
Const ForReading = 1
Set objFSO =…

JayBec
- 45
- 2
- 10
0
votes
2 answers
Can I do queries against the local address book in Outlook?
I am running the below code and making a lot of hits on the Microsoft Exchange server.
This often causes this particular code to crash for one reason or another. I get a variety of inconsistent VBA errors at runtime or even a complete crash of…

enderland
- 13,825
- 17
- 98
- 152
0
votes
1 answer
What MAPI Property determines if a meeting has not been sent yet?
Does anybody know what MAPI property determines whether a meeting item has not been sent yet? Currently, outlook displays a "Invitations have not been sent for this meeting." message at the top.
(e.g. this is a new meeting item). See screenshot…

Magnum
- 1,555
- 4
- 18
- 39
0
votes
1 answer
which account is selected in "FROM" in VSTO outlook 2010 while sending new email?
I am developing an add-in for outlook 2010 using VSTO (visual studio 2010). I am working with mail items and want to get a new email properties and do some works under some conditions while sending a new email, I could get some properties like…

mjyazdani
- 2,110
- 6
- 33
- 64
0
votes
2 answers
Share Contact List in Outlook 2010 using LDAP
Our company would like to share our contact list in Outlook 2010. However, as we do not have Exchange, we cannot use the share contact feature in Outlook 2010.
We would like to use LDAP to share our contact list as stated in this…

user1484319
- 179
- 1
- 3
- 12
0
votes
1 answer
Outlook Email Notification VB code
Found this code so that my meeting reminders overrider all current windows so im forced to see the notification. Hoping to set up something similar for every time i get an email notification. Currently it is pushed to the back and i don't even see…

Justin S
- 1,409
- 4
- 22
- 38
0
votes
4 answers
How to set the forecolor of a label control to match the selected outlook theme?
How do I set the color of my labels in a custom form region I developed for Outlook 2010 to match the user selected theme color? Please see picture below about the demonstration of what I'm trying to do.
I'm trying to match my custom form label…

Magnum
- 1,555
- 4
- 18
- 39
0
votes
1 answer
PowerShell Exchange 2007 Outlook 2010 Full mailbox access except 1 folder
Does any one know a way to give userA full access to userB's mailbox with the exception of one folder in the userB's mailbox using PowerShell.
Thanks in advance
user2299515
0
votes
1 answer
blocking inactivating outlook add-in
I am writing a add-in for outlook. I want to ask password before inactivating the add-in. if password is not correct, Add-in shouldn't be inactive. While inactiving add-in it is firing "ThisAddIn_Shutdown" event but I can't block inactiving…

Müslüm ÖZTÜRK
- 961
- 1
- 11
- 30
0
votes
2 answers
Not setting the property of incoming mails in MS Outlook 2010
I am setting the property (for making them As Read and with High Importance) of the mail those are coming to the MS Outlook 2010 inbox using below code -
Microsoft.Office.Interop.Outlook.Application myApp = new…

Nitendra Jain
- 489
- 1
- 7
- 24
0
votes
1 answer
How to access the MS Outlook mail using the EntryIDCollection?
I am reading Outlook mail using this code:
Microsoft.Office.Interop.Outlook.Application myApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook.NameSpace mapiNameSpace =…

Nitendra Jain
- 489
- 1
- 7
- 24
0
votes
1 answer
How to retrieve a list of all custom folders in Outlook containing only MailItems?
I am attempting to retrieve a list of all custom folders created by the user such that I can do a Global Advanced Search. I only want custom folders with MailItems objects contained within them, so I want to exclude several folders from the list…

Magnum
- 1,555
- 4
- 18
- 39
0
votes
1 answer
dropdown box in "new" email dialog
I want to add - dropdown menu in "new" email dialog in outlook 2010.
Can any one tell me how can i add dropdown or propulte menu list in new email dialog window.
this selected email (from drop down) will be use as sender email address.
it would be…

dsi
- 3,199
- 12
- 59
- 102