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.
0
votes
1answer
12 views
Outlook 2013 Add-In MailItem
I created an Outlook 2013 AddIn which should read the "location" field of an E-Mail.
I achieved it to get the selected MailItem and to read the subject from it but is there
a way to read the ...
0
votes
2answers
21 views
Once you download the PIA for Office 2010, how do you get Visual C# to place it in your Add References .NET menu?
I've never posted so I'm a little nervous, but I've been making a program to compile and send an email after gathering the computer name and IP. I've got an understanding how to do do that just fine, ...
1
vote
1answer
23 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
20 views
Outlook Interop [duplicate]
I have a problem with outlook.Interop.
When i try to save msg to word if the msg is signed, interop gives me a warning from outlook.
Is there any way to automatically accept this warning.
I have ...
-1
votes
1answer
12 views
Is it possible to send out an outlook delayed email without keeping the application running? [closed]
I am using outlook 2012 and was wondering if the above is possible. So even though my computer is off, the email should still send.
-1
votes
0answers
8 views
Is it possible to create a custom UI for an add-in for outlook 2010?
I need to create a Add-in that should be capable of having its own Form design and functionality. Is this possible via add-in or something else like form ? I need to have custom buttons with custom ...
0
votes
1answer
13 views
Outlook add-in vs Form?
I am going to develop an app that sits between a exchange server and outlook performing some additional operations. My extension for outlook will by default send all the mails to my app, it does some ...
0
votes
0answers
17 views
Outlook is unable to connect to the proxy server (Error code 20)
I am getting following error while trying to open outlook2010(Repeatedly prompting for credentials)
There is a problem with proxy server's security certificate. Outlook is unable to connect to the ...
-2
votes
0answers
45 views
IMAP email error message? [closed]
I have some IMAP email accounts with some serious issues which neither I or my host GoDaddy can get their heads around.
In Outlook 2007, everything was fine, but since people have moved over to 2010 ...
0
votes
2answers
24 views
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 -
...
0
votes
1answer
27 views
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 ...
0
votes
1answer
31 views
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 ...
1
vote
1answer
32 views
NewMailEx event is not firing for each mail?
I am developing an application, in which I need to read the content (mail body) of the incoming mail. For this, I am using below code to trigger the event, every time when new mail comes -
...
0
votes
1answer
32 views
How can I mark Mail as read in MS Outlook2010?
I am developing an application, in which I need to read the content (mail body) of the incoming mail. For this, I am using below code to trigger the event, every time when new mail comes -
...
0
votes
1answer
25 views
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) ...
0
votes
1answer
24 views
Change the status of mail as Read in outlook
i have written a code that will read all unread mails from Outlook 2010 and write them in a file. After that i want to change the status of the mails as Read in outlook.
How do i do it?
I am using ...
0
votes
0answers
7 views
Can't change MS Exchange Server 2010 email display name
I'm trying to create a simple email notification program, with a editable display name.
MailMessage mail = new MailMessage();
mail.From = new MailAddress(from, fromSenderName);
Actually the code ...
0
votes
0answers
27 views
How do I enable/disable my Ribbon Buttons in Outlook after ribbon loads
I have an Outlook Add-in created with VSTO. Using the Ribbon Designer I have created a tab with several controls (buttons etc) on it. (Environment: Outlook 2010/2007, .NET 4.0, VSTO 2010 runtime)
I ...
1
vote
1answer
29 views
Importing email files in Outlook programmatically
I have a directory full of email files I want to import into Outlook.
These files should be, AFAIK, in RFC822 format. Opening them with Notepad++ shows the following and more plaintext
Return-Path: ...
-1
votes
0answers
11 views
Retrieve auto archived email in outlook 2010 [closed]
i joined a company 8 months ago and i received a mail with my phone number and password on my first day. That message has been auto archived now and i could not see it when i type in 'Password' or ...
-1
votes
0answers
10 views
How do I enable Save As in an Outlook 2010 Message? [closed]
In Outlook 2010, I cannot save any message as an Outlook Template. Do I need to change a registry entry?
0
votes
0answers
19 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 ...
1
vote
1answer
78 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
219 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 ...
1
vote
0answers
140 views
Sending Meeting invite with mail attachment
I have created a MailMessage which is really a meeting request but problem is when it shows up in my Outlook I can
accept/decline like with any other meeting request. This is great. However,
now I am ...
0
votes
1answer
31 views
How to use Outlook's AdvancedSerach to find expiring e-mail via assigned server policy
I am attempting to find all expiring e-mails via Advanced Search method provided below. Optimistically, I hoped that their searches in articles such as this, and this which suggests using ...
0
votes
1answer
146 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
1answer
79 views
How to make a responsive grid in Outlook 2007?
I'm creating a 3x3 grid layout in an email, which I have done with tables. I have also made it mobile responsive so that when viewed on a mobile, the grid resizes to 2x2. This all works fine but for ...
0
votes
0answers
33 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
1answer
99 views
Outlook email - Html table cell's background color does not work? :-/
What html script should I use to make the table's cell background color works in MS-Outlook 2007 and 2010??
<table>
<tr>
<td style="background-color:#ffff00">Background ...
-1
votes
0answers
70 views
Display new email icon in taskbar Outlook 2010 [closed]
I've created a rule to send certain incoming mail to specific folders (not the inbox), and doing so doesn't display an icon in the taskbar alerting me of new mail (seems to only display when mail goes ...
1
vote
1answer
90 views
How to programmatically set a custom icon on an Outlook search folder? (i.e. Outlook Folder SetCustomIcon)
I am attempting to use the Folder.SetCustomIcon() method to place a custom icon on a saved search folder I programmatically created. The SetCustomIcon() documentation is very sparse but can be found ...
0
votes
1answer
65 views
How to programmatically select a folder to view in Outlook 2010?
I am programmatically creating a search folder via Search.Save method. After I save the search (it creates a new folder in the Search Folders directory), I would like to set to focus on this newly ...
0
votes
0answers
54 views
VB.NET, Outlook 2010, voting buttons
When I manually make an email in Outlook 2010, and add voting (via Menu Options, Use Voting Buttons, select Approve, Reject) ... the receiver gets an email where inside the body of the email it is ...
0
votes
0answers
54 views
How to send email with ribbon button
I am trying to send email with a custom Ribbon Button
so plese tell me how to get send email by this button and get body of mail in in Ribbon button
I am doing this but it not like i want
...
1
vote
1answer
66 views
How to find all mail items 1 year or older using Outlook's advanced find?
I am programmatically creating a new explorer window to find all items that are 1 year or older.
Outlook.Folder folder = ...
-1
votes
0answers
11 views
outlook2010 show all my calender items [closed]
I have many appointments in my calender.
But Outlook 2010 does not shows all the items which are saved.
How can I show all the items which are in my calender in the side bar of Outlook 2010?
2
votes
2answers
120 views
Outlook Add-in, RibbonType Microsoft.Outlook.Explorer and Microsoft.Outlook.Mail.Read
I have an Outlook 2010 Add-in coded in .NET 4.0/VS.NET 2010, C#. The Add-in extends the Ribbon => it adds a RibbonTab with 4 RibbonButtons to (RibbonType Property is set to) Microsoft.Outlook.Explorer ...
1
vote
0answers
14 views
Check to make sure only one inspector is open
I'm writing an VSTO Outlook Addin and I open up my own inspector (form) to have the user put in information. How can I check to make sure an instance of the form isn't loaded before opening another?
1
vote
1answer
38 views
Inconsistent Outlook Addin Event Firing
On my development machine I have the FormInitializing and FormShowing events firing before RibbonLoad. I created a setup package in VS 2010 and installed on a vanilla Windows 7 Ultimate with Outlook ...
1
vote
1answer
58 views
How to retrieve the Outlook folder of a mail item (Outlook.MailItem)?
I am getting my default inbox folder via inboxFolder = Globals.ThisAddIn.Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox
Elsewhere in my code, I begin doing a foreach loop ...
0
votes
0answers
20 views
Passing Variable from Outlook to Dynamics CRM
We are in the process of implementing MS Dynamics CRM 2011. Our implementation has been customized quite heavily to meet our business needs. We have several plugins that have been developed by a third ...
3
votes
1answer
68 views
Meeting Notice Being Sent Even Though I Have Set Cancel in Item_Write
I'm setting the Cancel check in the Item_Write event handler for a meeting request because if I set the Cancel to true in Item_Send, the meeting window closes. What I'm trying to do is prompt the user ...
1
vote
1answer
180 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
1answer
96 views
VB.NET - How to Drag a File From Outlook 2010 to My Form?
I'm developing an application to read XML files, get its data and populate some field. SO, I've implemented two ways to get the file: through a command button and through the drag and drop form event. ...
0
votes
0answers
197 views
Counting Emails in outlook 2010 in specific folder
Ok, I'm not all that familiar with VBA coding so I was hoping someone would be feeling helpful and see why the code (got code from another ticket on this site), which seems to work but generates an ...
0
votes
0answers
22 views
How do i find the current open meeting item is cancel meeting item or deleted meeting item?
How do i find the current open meeting item is cancel meeting item or deleted meeting item?
I need to find this via outlook object model.
Thanks a lot for your help in advance !
0
votes
1answer
93 views
User-defined type not defined - Using VBA to Import Pictures to Contacts in Outlook 2010
I'm trying to use some VBA in Outlook 2010 to bring in pictures for a contact list. When I last tried this in Outlook 2007, it worked fine. But now, I've been upgraded to Outlook 2010, and it no ...
1
vote
1answer
517 views
Auto generate outlook signature by GPO using multiple signatures
A while back i have searched for a flexible way to automatically generate a signature for different types of users. Our domain has multiple companies and each have different needs. The default scripts ...
0
votes
1answer
124 views
C# send email using Outlook dlls
In my application, I need to send emails. I can' t use smtp and there is no option installing MS Outlook in normal ways. I tried;
private Microsoft.Office.Interop.Outlook.Application oApp;
private ...




