Send/Receive operation on startup

H

HoudiniMan

Outlook doesn't perform a send/receive on startup.
I made sure there aren't any "damaged" groups in the line up like the
Microsoft knowledge base suggested. Any ideas?
 
J

Jan Paulsen

A possibility could be using VBA and the event Application_Startup() and
have that trigger a syncronization? I Haven't used VBA in outlook but I did
find the following example from the help:

Example
This Microsoft Visual Basic/Visual Basic for Applications example starts
synchronization of the user's second synchronization profile in response to
the user clicking a button on a form.

Private Sub Command1_Click()
Dim myOlApp As New Outlook.Application
Dim mySyncs As Outlook.SyncObjects
Set mySyncs = myOlApp.GetNamespace("MAPI").SyncObjects
Set mySyncObj = mySyncs.Item(1)
mySyncObj.Start
End Sub
Haven't tried it myself, and I'm not sure about the security issue (allowing
macros in outlook) , but it might be a possibility...

/JP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top