A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Search Forums
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Showing results 1 to 19 of 19
Search took 0.09 seconds.
Search: Posts made by: Dorian
Forum: Outlook and VBA February 24th 09, 12:53 AM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 857
Posted By Dorian
Loop thru mail items in folder

When I loop thru the mail items in an InBox folder, what sequence do they get
read in? I'd like to get then in 'received date/time' order most recent first.
Thanks.
-- Dorian
"Give someone a fish...
Forum: Outlook and VBA February 23rd 09, 09:18 PM Posted to microsoft.public.outlook.program_vba
Replies: 2
Views: 642
Posted By Dorian
Is this possible (Grab Outlook data from MS Access)?

I have a need to do the following.
When Outlook is open and an email has been composed and is ready to send ...
in another application (MS Access), I need to somehow get the to: and cc:
values from...
Forum: Add-ins for Outlook November 21st 08, 11:06 PM Posted to microsoft.public.outlook.program_addins
Replies: 3
Views: 804
Posted By Dorian
Changing the background color of a MailItem

Sorry, I guess I assumed that since this was a program addin newgroup it
would be assumed that I was looking for programming help. I use VS2008 and
Outlook 2007. I've look through the...
Forum: Add-ins for Outlook November 21st 08, 05:36 PM Posted to microsoft.public.outlook.program_addins
Replies: 3
Views: 804
Posted By Dorian
Changing the background color of a MailItem

Is there any way to change the background color of a Mailitem in the list
portion of Outlook? I need to display a status for a MailItem given certain
conditions and I think changing the background...
Forum: Add-ins for Outlook November 10th 08, 07:54 PM Posted to microsoft.public.outlook.program_addins
Replies: 0
Views: 1,200
Posted By Dorian
Outlook has already begun transmitting this message

One of my users has been getting this message.

System.Runtime.InteropServices.COMException (0xBBC40114): Outlook has
already begun transmitting this message.
at...
Forum: Add-ins for Outlook September 17th 08, 11:00 PM Posted to microsoft.public.outlook.program_addins
Replies: 9
Views: 1,129
Posted By Dorian
Explorer.SelectionChange event triggered multiple times

I suppose that works as a bandaid fix. Thanks for the help.

"Dmitry Streblechenko" wrote:

So here you go: store teh value of the last processed entry id and check to
see if the newly selected...
Forum: Add-ins for Outlook September 17th 08, 03:41 PM Posted to microsoft.public.outlook.program_addins
Replies: 9
Views: 1,129
Posted By Dorian
Explorer.SelectionChange event triggered multiple times

One other thing I've noticed. I added MessageBox.Show(item.EntryID) to check
the EntryID of my selected items. I couldn't for the life of me recreate the
problem. So I got rid of that and did a...
Forum: Add-ins for Outlook September 17th 08, 03:14 PM Posted to microsoft.public.outlook.program_addins
Replies: 9
Views: 1,129
Posted By Dorian
Explorer.SelectionChange event triggered multiple times

Yes, they are identical.

"Dmitry Streblechenko" wrote:

When the event fires up twice, do you get the same message both times (look
at MailItem.EntryID)?

--
Dmitry Streblechenko (MVP)
...
Forum: Add-ins for Outlook September 15th 08, 06:04 PM Posted to microsoft.public.outlook.program_addins
Replies: 9
Views: 1,129
Posted By Dorian
Explorer.SelectionChange event triggered multiple times

It's a problem because everytime a message is selected I go through some very
time intensive tasks, and having it occurring twice tends to slow things
down. The messages are being selected in the...
Forum: Add-ins for Outlook September 15th 08, 04:56 PM Posted to microsoft.public.outlook.program_addins
Replies: 9
Views: 1,129
Posted By Dorian
Explorer.SelectionChange event triggered multiple times

Sometimes when I change the selection in the explorer the SelectionChange
event gets triggered twice, other times it gets triggered once. I've been
able to fix it somewhat by filtering out when a...
Forum: Add-ins for Outlook September 9th 08, 04:27 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

Woops! Yeah I was doing some editting in the posting textarea and forgot to
change the name of that delegate. It should be named the same as yours. Even
with these changes it's still coming back on...
Forum: Add-ins for Outlook September 9th 08, 03:27 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

So this is what I have now. I've changed all of the accessors for the event,
delegate and methods. I've created a new class that implements the EventArgs
class. I don't know where you were going...
Forum: Add-ins for Outlook September 8th 08, 03:15 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

Ok, so here's what I do:

// Main Class
public partial class ThisAddIn
{
private void Explorer_SelectionChange()
{
ReceivedMailHandler rmh = new...
Forum: Add-ins for Outlook September 5th 08, 10:25 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

Putting it in a different class doesn't fix the problem. The event gets
triggered on the worker thread.

"Dorian" wrote:

That's exactly what I have, but when the event is fired, and I breakpoint...
Forum: Add-ins for Outlook September 5th 08, 10:02 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

I noticed that the only difference was that you mentioned the worker thread
should maintain a separate class. I think that should make the difference.
I'll make some changes and check in again....
Forum: Add-ins for Outlook September 5th 08, 08:54 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

That's exactly what I have, but when the event is fired, and I breakpoint the
event code, visual studio shows it's still running in the worker thread. Is
VS being a little misleading in it's thread...
Forum: Add-ins for Outlook September 5th 08, 07:38 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

Using a struct for the MailItem information makes sense, and if I am able to,
using a delegate event handler to return to the main thread makes sense. In
my previous experiences I've used the...
Forum: Add-ins for Outlook September 5th 08, 05:19 PM Posted to microsoft.public.outlook.program_addins
Replies: 15
Views: 1,748
Posted By Dorian
Multithreading with C#

I've looked over a few posts on multi threading with the OOM and I understand
that the OOM itself is restricted to being single threaded. I could use some
information on how this works.

What I...
Forum: Outlook - General Queries September 30th 07, 08:30 PM Posted to microsoft.public.outlook
Replies: 1
Views: 592
Posted By Dorian
Outlook 2007 keeps trying to send a deleted mail

Hi,

I had problems today to send a mail via Outlook 2007 (on WinXP Pro). Each
time I did a send/receive all, Outlook would try to send the mail, but to no
avail.
Finally, I found that there was a...
Showing results 1 to 19 of 19

 
Forum Jump

All times are GMT +1. The time now is 11:44 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.