Josh said:
Gary, I am having the same 'exact' problem with w2k sp4 and office/outlook 2003. Did you get a resolution to this problem?
Jos
----- Gary Bauer wrote: -----
Windows XP Professional / Office 2003 Released version.
Whenever I close Outlook 2003, I am not able to re-start Outlook 2003
without re-booting PC. After closing Outlook, the app appears to
terminate OK. It leaves behind the system tray "clock in a box", but
that might normal. After Start > Outlook 2003, nothing appears to
happen, but task manager shows several instances of Outlook running.
Nothing displays on the screen however. I've de-installed Office and
re-installed several times. On system shutdown, the CiceroUI...
something or other doesn't close by itself. Any thoughts? Help?
I am having problems with Outlook 2003 not terminating when using
automation with VB6 SP3 running on Win XP SP1. I have used different
variations on the same theme to automate Outlook 2003, but I can not
get it to terminate properly after a sync.
As a test, I am using the following code:
Option Explicit
Private Sub Command1_Click()
Dim objOutlook As Outlook.Application
Dim objNameSpace As Outlook.NameSpace
Set objOutlook = New Outlook.Application
Set objNameSpace = objOutlook.GetNamespace("MAPI")
'The next line will prevent Outlook from terminating (try
commenting it out)
objNameSpace.SyncObjects.Item(1).Start
MsgBox "Waiting for the Sync to complete..."
Set objNameSpace = Nothing
objOutlook.Quit
Set objOutlook = Nothing 'Outlook should terminate after this
line!
End Sub
Can anyone get this code to work and terminate Outlook 2003?
Cheers
Michael Bredbury