Outlook 2000 Message stuck in Outbox

Status
Not open for further replies.
J

John Erickson

Hi,

I'm developing an Add-in which works fine for Outlook 2003 and 2007. I'm

trying to get it to also work for Outlook 2000, but I have one problem. I am

autogenerating a message to be sent for some of the messages that I receive.

In Outlook 2003 & 2007, this generated message gets sent fine, but in Outlook

2000 it gets stuck in the Outbox and Outlook won't send the message. If I

double click the message in Outlook's Outbox and then click send, it sends

the message fine and the message gets deleted as I planned. FWIW I'm doing

all the message creation work in MAPI in a seperate thread that my add-in

sends messages to and not in the Outlook object model to avoid the

restrictions that generate possible virus warning messages. After I build the

message and set all it's properties I am calling IMessage::SubmitMessage(0)

and that seems to be all it takes for 2003 & 2007. I've looked at the message

that gets stuck in the Outbox using MFCMapi to inspect the message properties

and everything looks fine to me. I'm at a loss to explain why it's not being

sent. Have you heard of this before? Is there some property I'm not setting

or a call I'm not making that OL2000 requires?

John
 
D

Dmitry Streblechenko

Is Outlook 2000 installed in the IMO mode (which breaks Extended MAPI) or

C/W?

Dmitry Streblechenko (MVP)

-

"John Erickson" <JohnErickson> wrote in message

news:07E3F58F-04EF-4651-9E98-7636DF53A0C1@microsoft.com...
> Hi,

> I'm developing an Add-in which works fine for Outlook 2003 and 2007. I'm
> trying to get it to also work for Outlook 2000, but I have one problem. I
> am
> autogenerating a message to be sent for some of the messages that I
> receive.
> In Outlook 2003 & 2007, this generated message gets sent fine, but in
> Outlook
> 2000 it gets stuck in the Outbox and Outlook won't send the message. If I
> double click the message in Outlook's Outbox and then click send, it sends
> the message fine and the message gets deleted as I planned. FWIW I'm doing
> all the message creation work in MAPI in a seperate thread that my add-in
> sends messages to and not in the Outlook object model to avoid the
> restrictions that generate possible virus warning messages. After I build
> the
> message and set all it's properties I am calling
> IMessage::SubmitMessage(0)
> and that seems to be all it takes for 2003 & 2007. I've looked at the
> message
> that gets stuck in the Outbox using MFCMapi to inspect the message
> properties
> and everything looks fine to me. I'm at a loss to explain why it's not
> being
> sent. Have you heard of this before? Is there some property I'm not
> setting
> or a call I'm not making that OL2000 requires?

> John
 
J

John Erickson

It's IMO, but I know that all of the MAPI calls I'm making work well (with

the exception of this SubmitMessage call), so I don't think it's broken. Even

the SubmitMessage call succeeds with S_OK. It just doesn't send the message.

When you say it breaks Extended MAPI, what exactly do you mean?

"Dmitry Streblechenko" wrote:


> Is Outlook 2000 installed in the IMO mode (which breaks Extended MAPI) or
> C/W?

> > Dmitry Streblechenko (MVP)
>

>

>

> -
> "John Erickson" <JohnErickson> wrote in message
> news:07E3F58F-04EF-4651-9E98-7636DF53A0C1@microsoft.com...
> > Hi,
> > I'm developing an Add-in which works fine for Outlook 2003 and 2007. I'm
> > trying to get it to also work for Outlook 2000, but I have one problem. I
> > am
> > autogenerating a message to be sent for some of the messages that I
> > receive.
> > In Outlook 2003 & 2007, this generated message gets sent fine, but in
> > Outlook
> > 2000 it gets stuck in the Outbox and Outlook won't send the message. If I
> > double click the message in Outlook's Outbox and then click send, it sends
> > the message fine and the message gets deleted as I planned. FWIW I'm doing
> > all the message creation work in MAPI in a seperate thread that my add-in
> > sends messages to and not in the Outlook object model to avoid the
> > restrictions that generate possible virus warning messages. After I build
> > the
> > message and set all it's properties I am calling
> > IMessage::SubmitMessage(0)
> > and that seems to be all it takes for 2003 & 2007. I've looked at the
> > message
> > that gets stuck in the Outbox using MFCMapi to inspect the message
> > properties
> > and everything looks fine to me. I'm at a loss to explain why it's not
> > being
> > sent. Have you heard of this before? Is there some property I'm not
> > setting
> > or a call I'm not making that OL2000 requires?
> > John


>
 
J

John Erickson

I did a futher study of the differences in the properties of the message that

is stuck in the Outbox vs the message after double clicking it and hitting

send. (Fortunately it doesn't send right away and I could close Outlook 2000

and use MFCMapi to look at the properties.) The one after hitting send has

the following differences:

PR_CLIENT_SUBMIT_TIME exists,

PR_MESSAGE_DELIVERY_TIME exists,

PR_MESSAGE_FLAGS has an added bit (MSGFLAG_SUBMIT),

PR_MESSAGE_SIZE increased by 69,

PR_SENTMAIL_ENTRYID exists,

PR_SUBMIT_FLAGS exists,

PR_ACCESS looses the MAPI_ACCESS_MODIFY bit

PR_ACCESS_LEVEL changes from 1 to 0,

PR_LAST_MODIFICATION_TIME changes

named properties 0x8552, 0x8554, and 0x8583 are added.

It looks suspiciously like the SubmitMessage call is only saving the message

and not actually submitting it to be sent. Is there an additional call I need

to make for Outlook 2000?

John

"John Erickson" wrote:


> It's IMO, but I know that all of the MAPI calls I'm making work well (with
> the exception of this SubmitMessage call), so I don't think it's broken. Even
> the SubmitMessage call succeeds with S_OK. It just doesn't send the message.
> When you say it breaks Extended MAPI, what exactly do you mean?

> "Dmitry Streblechenko" wrote:
>
> > Is Outlook 2000 installed in the IMO mode (which breaks Extended MAPI) or
> > C/W?
> > > > Dmitry Streblechenko (MVP)
> >

> >

> >

> > -
> > "John Erickson" <JohnErickson> wrote in message
> > news:07E3F58F-04EF-4651-9E98-7636DF53A0C1@microsoft.com...
> > > Hi,
> > > > I'm developing an Add-in which works fine for Outlook 2003 and 2007. I'm
> > > trying to get it to also work for Outlook 2000, but I have one problem. I
> > > am
> > > autogenerating a message to be sent for some of the messages that I
> > > receive.
> > > In Outlook 2003 & 2007, this generated message gets sent fine, but in
> > > Outlook
> > > 2000 it gets stuck in the Outbox and Outlook won't send the message. If I
> > > double click the message in Outlook's Outbox and then click send, it sends
> > > the message fine and the message gets deleted as I planned. FWIW I'm doing
> > > all the message creation work in MAPI in a seperate thread that my add-in
> > > sends messages to and not in the Outlook object model to avoid the
> > > restrictions that generate possible virus warning messages. After I build
> > > the
> > > message and set all it's properties I am calling
> > > IMessage::SubmitMessage(0)
> > > and that seems to be all it takes for 2003 & 2007. I've looked at the
> > > message
> > > that gets stuck in the Outbox using MFCMapi to inspect the message
> > > properties
> > > and everything looks fine to me. I'm at a loss to explain why it's not
> > > being
> > > sent. Have you heard of this before? Is there some property I'm not
> > > setting
> > > or a call I'm not making that OL2000 requires?
> > > > John

> >
 
J

John Erickson

I reconfigured it to be C/W instead of IMO and I am seeing the exact same

behavior. Another thing I have noticed now is that once I have Done 1 or more

SubmitMessage calls, Outlook will not terminate. Instead it hangs and I have

to Stop debugging to get it to shutdown all the way. After discovering this I

reviewed all my COM object references during the SubmitMessage process and I

don't see anyplace where I am not releasing a reference when I should be.

It's like Outlook itself is hung up in the SubmitMessage process even though

it returned S_OK to me. I just tried adding the FORCE_SUBMIT option to the

SubmitMessage call and that solved part of my problem. The message now gets

sent. However, I still have the termination problem if I have done 1 or more

SubmitMessage calls.

John

"John Erickson" wrote:


> I did a futher study of the differences in the properties of the message that
> is stuck in the Outbox vs the message after double clicking it and hitting
> send. (Fortunately it doesn't send right away and I could close Outlook 2000
> and use MFCMapi to look at the properties.) The one after hitting send has
> the following differences:

> PR_CLIENT_SUBMIT_TIME exists,
> PR_MESSAGE_DELIVERY_TIME exists,
> PR_MESSAGE_FLAGS has an added bit (MSGFLAG_SUBMIT),
> PR_MESSAGE_SIZE increased by 69,
> PR_SENTMAIL_ENTRYID exists,
> PR_SUBMIT_FLAGS exists,
> PR_ACCESS looses the MAPI_ACCESS_MODIFY bit
> PR_ACCESS_LEVEL changes from 1 to 0,
> PR_LAST_MODIFICATION_TIME changes
> named properties 0x8552, 0x8554, and 0x8583 are added.

> It looks suspiciously like the SubmitMessage call is only saving the message
> and not actually submitting it to be sent. Is there an additional call I need
> to make for Outlook 2000?

> John

> "John Erickson" wrote:
>
> > It's IMO, but I know that all of the MAPI calls I'm making work well (with
> > the exception of this SubmitMessage call), so I don't think it's broken. Even
> > the SubmitMessage call succeeds with S_OK. It just doesn't send the message.
> > When you say it breaks Extended MAPI, what exactly do you mean?
> > "Dmitry Streblechenko" wrote:
> >
> > > Is Outlook 2000 installed in the IMO mode (which breaks Extended MAPI) or
> > > C/W?
> > > > > > > Dmitry Streblechenko (MVP)
> > >

> > >

> > >

> > > -
> > > "John Erickson" <JohnErickson> wrote in message
> > > news:07E3F58F-04EF-4651-9E98-7636DF53A0C1@microsoft.com...
> > > > Hi,
> > > > > > I'm developing an Add-in which works fine for Outlook 2003 and 2007. I'm
> > > > trying to get it to also work for Outlook 2000, but I have one problem. I
> > > > am
> > > > autogenerating a message to be sent for some of the messages that I
> > > > receive.
> > > > In Outlook 2003 & 2007, this generated message gets sent fine, but in
> > > > Outlook
> > > > 2000 it gets stuck in the Outbox and Outlook won't send the message. If I
> > > > double click the message in Outlook's Outbox and then click send, it sends
> > > > the message fine and the message gets deleted as I planned. FWIW I'm doing
> > > > all the message creation work in MAPI in a seperate thread that my add-in
> > > > sends messages to and not in the Outlook object model to avoid the
> > > > restrictions that generate possible virus warning messages. After I build
> > > > the
> > > > message and set all it's properties I am calling
> > > > IMessage::SubmitMessage(0)
> > > > and that seems to be all it takes for 2003 & 2007. I've looked at the
> > > > message
> > > > that gets stuck in the Outbox using MFCMapi to inspect the message
> > > > properties
> > > > and everything looks fine to me. I'm at a loss to explain why it's not
> > > > being
> > > > sent. Have you heard of this before? Is there some property I'm not
> > > > setting
> > > > or a call I'm not making that OL2000 requires?
> > > > > > John
> > > > >
 
D

Dmitry Streblechenko

After calling SubmitMessage, you must immediatley release all references to

that message - it now belongs to the spooler.

Calling SubmitMessage (or any other method) after you have alreday called

SubmitMessage is a bad idea.

Are you sure all the recipients are resolved?

Dmitry Streblechenko (MVP)

-

"John Erickson" <JohnErickson> wrote in message

news:B99A888A-69F0-4876-BF3E-8366D7116D08@microsoft.com...
> I reconfigured it to be C/W instead of IMO and I am seeing the exact same
> behavior. Another thing I have noticed now is that once I have Done 1 or
> more
> SubmitMessage calls, Outlook will not terminate. Instead it hangs and I
> have
> to Stop debugging to get it to shutdown all the way. After discovering
> this I
> reviewed all my COM object references during the SubmitMessage process and
> I
> don't see anyplace where I am not releasing a reference when I should be.
> It's like Outlook itself is hung up in the SubmitMessage process even
> though
> it returned S_OK to me. I just tried adding the FORCE_SUBMIT option to the
> SubmitMessage call and that solved part of my problem. The message now
> gets
> sent. However, I still have the termination problem if I have done 1 or
> more
> SubmitMessage calls.

> John

> "John Erickson" wrote:
>
> > I did a futher study of the differences in the properties of the message
> > that
> > is stuck in the Outbox vs the message after double clicking it and
> > hitting
> > send. (Fortunately it doesn't send right away and I could close Outlook
> > 2000
> > and use MFCMapi to look at the properties.) The one after hitting send
> > has
> > the following differences:
>

>> PR_CLIENT_SUBMIT_TIME exists,
> > PR_MESSAGE_DELIVERY_TIME exists,
> > PR_MESSAGE_FLAGS has an added bit (MSGFLAG_SUBMIT),
> > PR_MESSAGE_SIZE increased by 69,
> > PR_SENTMAIL_ENTRYID exists,
> > PR_SUBMIT_FLAGS exists,
> > PR_ACCESS looses the MAPI_ACCESS_MODIFY bit
> > PR_ACCESS_LEVEL changes from 1 to 0,
> > PR_LAST_MODIFICATION_TIME changes
> > named properties 0x8552, 0x8554, and 0x8583 are added.
>

>> It looks suspiciously like the SubmitMessage call is only saving the
> > message
> > and not actually submitting it to be sent. Is there an additional call I
> > need
> > to make for Outlook 2000?
>

>> John
>

>> "John Erickson" wrote:
> >
> > > It's IMO, but I know that all of the MAPI calls I'm making work well
> > > (with
> > > the exception of this SubmitMessage call), so I don't think it's
> > > broken. Even
> > > the SubmitMessage call succeeds with S_OK. It just doesn't send the
> > > message.
> > > When you say it breaks Extended MAPI, what exactly do you mean?
> >> > "Dmitry Streblechenko" wrote:
> >> > > Is Outlook 2000 installed in the IMO mode (which breaks Extended
> > > > MAPI) or
> > > > C/W?
> > >> > > > > > > Dmitry Streblechenko (MVP)
> > > >

> > > >

> > > >

> > > > -
> > > > "John Erickson" <JohnErickson> wrote in
> > > > message
> > > > news:07E3F58F-04EF-4651-9E98-7636DF53A0C1@microsoft.com...
> > > > > Hi,
> > > >> > > > I'm developing an Add-in which works fine for Outlook 2003 and
> > > > > 2007. I'm
> > > > > trying to get it to also work for Outlook 2000, but I have one
> > > > > problem. I
> > > > > am
> > > > > autogenerating a message to be sent for some of the messages that I
> > > > > receive.
> > > > > In Outlook 2003 & 2007, this generated message gets sent fine, but
> > > > > in
> > > > > Outlook
> > > > > 2000 it gets stuck in the Outbox and Outlook won't send the
> > > > > message. If I
> > > > > double click the message in Outlook's Outbox and then click send,
> > > > > it sends
> > > > > the message fine and the message gets deleted as I planned. FWIW
> > > > > I'm doing
> > > > > all the message creation work in MAPI in a seperate thread that my
> > > > > add-in
> > > > > sends messages to and not in the Outlook object model to avoid the
> > > > > restrictions that generate possible virus warning messages. After I
> > > > > build
> > > > > the
> > > > > message and set all it's properties I am calling
> > > > > IMessage::SubmitMessage(0)
> > > > > and that seems to be all it takes for 2003 & 2007. I've looked at
> > > > > the
> > > > > message
> > > > > that gets stuck in the Outbox using MFCMapi to inspect the message
> > > > > properties
> > > > > and everything looks fine to me. I'm at a loss to explain why it's
> > > > > not
> > > > > being
> > > > > sent. Have you heard of this before? Is there some property I'm not
> > > > > setting
> > > > > or a call I'm not making that OL2000 requires?
> > > >> > > > John
> > >> >> > >
 
J

John Erickson

In the course of converting all my MAPI code to Ansi instead of Unicode the

termination problem went away. I retested on OL2007 and Ansi seems to work

fine there too, so I guess I'll stick with Ansi. I was setting it up to

attempt Unicode calls first and if the calls failed with CdoE_BAD_CHARWIDTH

or CdoE_NOT_FOUND, then I would attempt the call with Ansi. Now I've reversed

that and I attempt Ansi first and things seem to work much better for OL2000.

Thanks for the tips.

John

"Dmitry Streblechenko" wrote:


> After calling SubmitMessage, you must immediatley release all references to
> that message - it now belongs to the spooler.
> Calling SubmitMessage (or any other method) after you have alreday called
> SubmitMessage is a bad idea.
> Are you sure all the recipients are resolved?

> > Dmitry Streblechenko (MVP)
>

>

>

> -
> "John Erickson" <JohnErickson> wrote in message
> news:B99A888A-69F0-4876-BF3E-8366D7116D08@microsoft.com...
> >I reconfigured it to be C/W instead of IMO and I am seeing the exact same
> > behavior. Another thing I have noticed now is that once I have Done 1 or
> > more
> > SubmitMessage calls, Outlook will not terminate. Instead it hangs and I
> > have
> > to Stop debugging to get it to shutdown all the way. After discovering
> > this I
> > reviewed all my COM object references during the SubmitMessage process and
> > I
> > don't see anyplace where I am not releasing a reference when I should be.
> > It's like Outlook itself is hung up in the SubmitMessage process even
> > though
> > it returned S_OK to me. I just tried adding the FORCE_SUBMIT option to the
> > SubmitMessage call and that solved part of my problem. The message now
> > gets
> > sent. However, I still have the termination problem if I have done 1 or
> > more
> > SubmitMessage calls.
> > John
> > "John Erickson" wrote:
> >
> >> I did a futher study of the differences in the properties of the message
> >> that
> >> is stuck in the Outbox vs the message after double clicking it and
> >> hitting
> >> send. (Fortunately it doesn't send right away and I could close Outlook
> >> 2000
> >> and use MFCMapi to look at the properties.) The one after hitting send
> >> has
> >> the following differences:
> >
> >> PR_CLIENT_SUBMIT_TIME exists,
> >> PR_MESSAGE_DELIVERY_TIME exists,
> >> PR_MESSAGE_FLAGS has an added bit (MSGFLAG_SUBMIT),
> >> PR_MESSAGE_SIZE increased by 69,
> >> PR_SENTMAIL_ENTRYID exists,
> >> PR_SUBMIT_FLAGS exists,
> >> PR_ACCESS looses the MAPI_ACCESS_MODIFY bit
> >> PR_ACCESS_LEVEL changes from 1 to 0,
> >> PR_LAST_MODIFICATION_TIME changes
> >> named properties 0x8552, 0x8554, and 0x8583 are added.
> >
> >> It looks suspiciously like the SubmitMessage call is only saving the
> >> message
> >> and not actually submitting it to be sent. Is there an additional call I
> >> need
> >> to make for Outlook 2000?
> >
> >> John
> >
> >> "John Erickson" wrote:
> >
> >> > It's IMO, but I know that all of the MAPI calls I'm making work well
> >> > (with
> >> > the exception of this SubmitMessage call), so I don't think it's
> >> > broken. Even
> >> > the SubmitMessage call succeeds with S_OK. It just doesn't send the
> >> > message.
> >> > When you say it breaks Extended MAPI, what exactly do you mean?
> >> >> > "Dmitry Streblechenko" wrote:
> >> >> > > Is Outlook 2000 installed in the IMO mode (which breaks Extended
> >> > > MAPI) or
> >> > > C/W?
> >> > >> > > > >> > > Dmitry Streblechenko (MVP)
> >> > >

> >> > >

> >> > >

> >> > > -
> >> > > "John Erickson" <JohnErickson> wrote in
> >> > > message
> >> > > news:07E3F58F-04EF-4651-9E98-7636DF53A0C1@microsoft.com...
> >> > > > Hi,
> >> > > >> > > > I'm developing an Add-in which works fine for Outlook 2003 and
> >> > > > 2007. I'm
> >> > > > trying to get it to also work for Outlook 2000, but I have one
> >> > > > problem. I
> >> > > > am
> >> > > > autogenerating a message to be sent for some of the messages that I
> >> > > > receive.
> >> > > > In Outlook 2003 & 2007, this generated message gets sent fine, but
> >> > > > in
> >> > > > Outlook
> >> > > > 2000 it gets stuck in the Outbox and Outlook won't send the
> >> > > > message. If I
> >> > > > double click the message in Outlook's Outbox and then click send,
> >> > > > it sends
> >> > > > the message fine and the message gets deleted as I planned. FWIW
> >> > > > I'm doing
> >> > > > all the message creation work in MAPI in a seperate thread that my
> >> > > > add-in
> >> > > > sends messages to and not in the Outlook object model to avoid the
> >> > > > restrictions that generate possible virus warning messages. After I
> >> > > > build
> >> > > > the
> >> > > > message and set all it's properties I am calling
> >> > > > IMessage::SubmitMessage(0)
> >> > > > and that seems to be all it takes for 2003 & 2007. I've looked at
> >> > > > the
> >> > > > message
> >> > > > that gets stuck in the Outbox using MFCMapi to inspect the message
> >> > > > properties
> >> > > > and everything looks fine to me. I'm at a loss to explain why it's
> >> > > > not
> >> > > > being
> >> > > > sent. Have you heard of this before? Is there some property I'm not
> >> > > > setting
> >> > > > or a call I'm not making that OL2000 requires?
> >> > > >> > > > John
> >> > >> > >> > >


>
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
M which Outlook recommended to buy for moving Outlook 2000 versions Contact Data Using Outlook 2
B Outlook 2000 Rule to Move txt msg Not Working if size >24KB Using Outlook 3
D Outlook 2000 slow Using Outlook 2
T How can I eradicate Outlook 2000+ Using Outlook 6
T passwords in outlook 2000(in XP Virtual PC mode) under Windows 7 Professional Using Outlook 6
P Printing problems with MS Outlook 2000 Using Outlook 1
B Restoring Outlook 2000 messages Using Outlook 4
B strange change in Outlook 2000 forms Outlook VBA and Custom Forms 1
J Outlook 2000 "My Shortcuts" question Outlook VBA and Custom Forms 2
S Choosing different reply template in Outlook 2000 Outlook VBA and Custom Forms 1
R IConverterSession::MAPIToMIMEStm error in outlook 2000 Outlook VBA and Custom Forms 3
R IConverterSession::MIMEToMAPI error in outlook 2000 Outlook VBA and Custom Forms 1
petunia Outlook tasks module sunsetting? Exchange Server Administration 3
G Save emails as msg file from Outlook Web AddIn (Office JS) Outlook VBA and Custom Forms 1
D Outlook VBA forward the selected email to the original sender’s email ID (including the email used in TO, CC Field) from the email chain Outlook VBA and Custom Forms 3
U Outlook 2021 not showing contact cards in Searches Using Outlook 2
C Outlook - Macro to block senders domain - Macro Fix Outlook VBA and Custom Forms 2
H Outlook 365 O365 outlook calendar item editing Using Outlook 1
J Outlook 365 html inline images Using Outlook 1
Rupert Dragwater How to get Outlook 365 to open from websites Using Outlook 5
S Why do I have to close and reopen Outlook for macros to work? Outlook VBA and Custom Forms 2
J Outlook 2021 ScanPST errors (yet again ... sorry): repair button missing Outlook 2021 Using Outlook 0
HarvMan Outlook 365 - Rule to Move an Incoming Message to Another Folder Using Outlook 4
K Moved pst to new computer, now Gmail not coming into Outlook Using Outlook 7
S Email Macros to go to a SHARED Outlook mailbox Draft folder...NOT my personal Outlook Draft folder Using Outlook 2
F Running Scripts in Outlook 2021 Using Outlook 0
Nufc1980 Outlook "Please treat this as private label" auto added to some emails - Help. Using Outlook 3
S Outlook 2019 Custom outlook Add-in using Visual Studio Outlook VBA and Custom Forms 0
V Outlook macros no longer run until VB editor is opened Outlook VBA and Custom Forms 0
R Outlook 365 How to integrate a third-party app with Outlook to track email and sms? Using Outlook 2
e_a_g_l_e_p_i I can't believe what I am seeing when trying to install Outlook 2021 Using Outlook 9
Kika Melo Outlook Calendar deleted appointments not in Deleted Items folder Using Outlook 3
P How to get a QR code for automatic signin with Outlook for iOS Using Outlook 5
J Migrating Outlook Using Outlook 1
Retired Geek Outlook for the MAC with Yahoo accounts now very broken Using Outlook 9
S Outlook 2002- "Send" button has disappeared. Help please. Using Outlook 1
L How Stop Outlook Nag Messages Using Outlook 1
TomHuckstep Remove Send/Receive All Folders (IMAP/POP) button from Outlook 365 Ribbon Using Outlook 1
L I Cannot Sign Into My Outlook Account? Outlook VBA and Custom Forms 0
icacream Outlook 2021 - Google calendar in the peek Using Outlook 0
e_a_g_l_e_p_i Question about installing my Gmail account on my iPhone but still getting messages downloaded to my desktop Outlook. Using Outlook 3
F Want to add second email to Outlook for business use Using Outlook 4
kburrows Outlook Email Body Text Disappears/Overlaps, Folders Switch Around when You Hover, Excel Opens Randomly and Runs in the Background - Profile Corrupt? Using Outlook 0
M using excel to sort outlook appointment items Outlook VBA and Custom Forms 4
e_a_g_l_e_p_i MY Outlook 2021 changed the format of the shortcuts for mail, calendar etc. Using Outlook 10
Z Outlook 2021 Outlook new emails notification not working Using Outlook 4
K Changing the Deleted Items location in Outlook 2019 Using Outlook 2
J Outlook 365 Outlook Macro to Sort emails by column "Received" to view the latest email received Outlook VBA and Custom Forms 0
V How to use Comas in a picklist in Outlook forms Outlook VBA and Custom Forms 3
e_a_g_l_e_p_i Question about reinstalling Outlook 2021 Using Outlook 5

Similar threads

Top