Forum: Outlook and VBA
February 24th 09, 12:53 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 857
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
|
Forum: Add-ins for Outlook
November 21st 08, 11:06 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 3
Views: 804
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
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
|
Forum: Add-ins for Outlook
September 17th 08, 11:00 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 9
Views: 1,129
|
Forum: Add-ins for Outlook
September 17th 08, 03:41 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 9
Views: 1,129
|
Forum: Add-ins for Outlook
September 17th 08, 03:14 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 9
Views: 1,129
|
Forum: Add-ins for Outlook
September 15th 08, 06:04 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 9
Views: 1,129
|
Forum: Add-ins for Outlook
September 15th 08, 04:56 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 9
Views: 1,129
|
Forum: Add-ins for Outlook
September 9th 08, 04:27 PM Posted to microsoft.public.outlook.program_addins
|
Replies: 15
Views: 1,748
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
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
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
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
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
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
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
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
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...
|