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 » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Olk2003 displaying an error message



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 11th 09, 01:34 PM posted to microsoft.public.outlook.program_addins
Johnsaida
external usenet poster
 
Posts: 4
Default Olk2003 displaying an error message

Hi,
I have developed an outlook addin(using vb6.0) which gives an extra
functionality, when user clicks replyall button.
I have installed this addin for both olk2000 and olk2003.
In olk2000 the addin is working good.But in olk2003 i am getting the
following error when i closed and open the outlook.
"Outlook Experienced a serious error the last time the add-in
'replyalladdin' was opened.Would you like to disable this
addin?................................."
I have tried a lot to get the solution,but i could not.
It will be greate to help me to find a permament solution for this problem.
Many Thanks,
John
Ads
  #2  
Old May 11th 09, 01:44 PM posted to microsoft.public.outlook.program_addins
Johnsaida
external usenet poster
 
Posts: 4
Default Olk2003 displaying an error message



"Johnsaida" wrote:

Hi,
I have developed an outlook addin(using vb6.0) which gives an extra
functionality, when user clicks replyall button.
I have installed this addin for both olk2000 and olk2003.
In olk2000 the addin is working good.But in olk2003 i am getting the
following error when i closed and open the outlook.
"Outlook Experienced a serious error the last time the add-in
'replyalladdin' was opened.Would you like to disable this
addin?................................."
I have tried a lot to get the solution,but i could not.
It will be greate to help me to find a permament solution for this problem.
Many Thanks,
John

  #3  
Old May 11th 09, 07:01 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Olk2003 displaying an error message

There's no way to tell what's happening from the outside. In general that
warning means that your addin crashed Outlook or ran into an unhandled
exception. All exceptions in COM addins must be handled in some way.

You need to do a lot of error logging to see what errors are being fired
where and when and if they are being handled.

You can also see if anything you are doing is OK in Outlook 2000 and
restricted in Outlook 2003, although in general Outlook 2000 is actually
stricter than Outlook 2003 is.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Johnsaida" wrote in message
...
Hi,
I have developed an outlook addin(using vb6.0) which gives an extra
functionality, when user clicks replyall button.
I have installed this addin for both olk2000 and olk2003.
In olk2000 the addin is working good.But in olk2003 i am getting the
following error when i closed and open the outlook.
"Outlook Experienced a serious error the last time the add-in
'replyalladdin' was opened.Would you like to disable this
addin?................................."
I have tried a lot to get the solution,but i could not.
It will be greate to help me to find a permament solution for this
problem.
Many Thanks,
John


  #4  
Old May 12th 09, 08:18 AM posted to microsoft.public.outlook.program_addins
Johnsaida
external usenet poster
 
Posts: 4
Default Olk2003 displaying an error message

Hi Ken Slovak,
Let me say thanks for immediate reply to my post.
I have handiled all exception and
I am not restrictng any thing in outlook2003.The code which has been
compiled in outlook2000 being installed in both olk2000 and olk2003.When i
checked in Eventlog i have noticed one of the following error
messages(olk2003 only)

"Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module msvbvm60.dll, version 6.0.97.97, stamp 4549bd5e, debug? 0,
fault address 0x000cc91d."
OR
Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module outllib.dll, version 11.0.8169.0, stamp 465f2870, debug? 0,
fault address 0x000b9c1f.
OR
Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module unknown, version 0.0.0.0, stamp 00000000, debug? 0, fault
address 0xff087881.

I have checked all the versions and i have tested the addin in different
machines.Please help me to identify the root cause and resolution for the
same.

Many Thanks,
John

"Ken Slovak - [MVP - Outlook]" wrote:

There's no way to tell what's happening from the outside. In general that
warning means that your addin crashed Outlook or ran into an unhandled
exception. All exceptions in COM addins must be handled in some way.

You need to do a lot of error logging to see what errors are being fired
where and when and if they are being handled.

You can also see if anything you are doing is OK in Outlook 2000 and
restricted in Outlook 2003, although in general Outlook 2000 is actually
stricter than Outlook 2003 is.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Johnsaida" wrote in message
...
Hi,
I have developed an outlook addin(using vb6.0) which gives an extra
functionality, when user clicks replyall button.
I have installed this addin for both olk2000 and olk2003.
In olk2000 the addin is working good.But in olk2003 i am getting the
following error when i closed and open the outlook.
"Outlook Experienced a serious error the last time the add-in
'replyalladdin' was opened.Would you like to disable this
addin?................................."
I have tried a lot to get the solution,but i could not.
It will be greate to help me to find a permament solution for this
problem.
Many Thanks,
John



  #5  
Old May 12th 09, 02:53 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Olk2003 displaying an error message

Are any other addins at all running on the Outlook 2003 system? If so
disable them all other than your addin and see if the same thing occurs.

It's hard to tell from those event log entries without analyzing a crash
dump, which only MS can really do since they don't release the Outlook
symbols, but that VB6 runtime error makes me guess that something is
accessing the Outlook object model on a background thread. That's guaranteed
to crash or hang Outlook, and will cause that error. It also usually leads
to Outlook disabling the VB6 addin even if it's not the code that does that
access. That's due to how the stack is set on those background thread calls
and the fact that the VB6 runtime is the first to feel the effects of the
crash.

Do you actually see any Outlook crashes, where Watson comes up?

If this doesn't help you might need to open a support case with MS to get
the crash dumps analyzed.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Johnsaida" wrote in message
...
Hi Ken Slovak,
Let me say thanks for immediate reply to my post.
I have handiled all exception and
I am not restrictng any thing in outlook2003.The code which has been
compiled in outlook2000 being installed in both olk2000 and olk2003.When
i
checked in Eventlog i have noticed one of the following error
messages(olk2003 only)

"Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module msvbvm60.dll, version 6.0.97.97, stamp 4549bd5e, debug? 0,
fault address 0x000cc91d."
OR
Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module outllib.dll, version 11.0.8169.0, stamp 465f2870, debug?
0,
fault address 0x000b9c1f.
OR
Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module unknown, version 0.0.0.0, stamp 00000000, debug? 0, fault
address 0xff087881.

I have checked all the versions and i have tested the addin in different
machines.Please help me to identify the root cause and resolution for the
same.

Many Thanks,
John


  #6  
Old May 13th 09, 11:58 AM posted to microsoft.public.outlook.program_addins
Johnsaida
external usenet poster
 
Posts: 4
Default Olk2003 displaying an error message

Hi Ken Slovak,
I am very hapy to see your answer.But one thing i need to clarify is, the
eror message is not occuring in all the machines in which the addin was
installed.In some machines only it is occuring.
In one machine i have reinstalled the outlook2003 Service Pack 3 and clicked
the'Detect and Repair' button in the Help Menu of Outlook.After doing this
that error message was not appeared.I dont know what is happend in this
action.

But it is not feasible if the error occured in more number of client
machines(Say 100).Do you have any clue to get permanent solution.It would be
greate if you give response on this.
Many Thanks,
John

"Ken Slovak - [MVP - Outlook]" wrote:

Are any other addins at all running on the Outlook 2003 system? If so
disable them all other than your addin and see if the same thing occurs.

It's hard to tell from those event log entries without analyzing a crash
dump, which only MS can really do since they don't release the Outlook
symbols, but that VB6 runtime error makes me guess that something is
accessing the Outlook object model on a background thread. That's guaranteed
to crash or hang Outlook, and will cause that error. It also usually leads
to Outlook disabling the VB6 addin even if it's not the code that does that
access. That's due to how the stack is set on those background thread calls
and the fact that the VB6 runtime is the first to feel the effects of the
crash.

Do you actually see any Outlook crashes, where Watson comes up?

If this doesn't help you might need to open a support case with MS to get
the crash dumps analyzed.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Johnsaida" wrote in message
...
Hi Ken Slovak,
Let me say thanks for immediate reply to my post.
I have handiled all exception and
I am not restrictng any thing in outlook2003.The code which has been
compiled in outlook2000 being installed in both olk2000 and olk2003.When
i
checked in Eventlog i have noticed one of the following error
messages(olk2003 only)

"Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module msvbvm60.dll, version 6.0.97.97, stamp 4549bd5e, debug? 0,
fault address 0x000cc91d."
OR
Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module outllib.dll, version 11.0.8169.0, stamp 465f2870, debug?
0,
fault address 0x000b9c1f.
OR
Faulting application outlook.exe, version 11.0.8169.0, stamp 465f28e3,
faulting module unknown, version 0.0.0.0, stamp 00000000, debug? 0, fault
address 0xff087881.

I have checked all the versions and i have tested the addin in different
machines.Please help me to identify the root cause and resolution for the
same.

Many Thanks,
John



  #7  
Old May 13th 09, 02:32 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Olk2003 displaying an error message

Not being a mind reader I have no specific answers to provide. You need to
see what differences are there in computers where you don't have the problem
and where you do. If that doesn't help my guess is that you will need to
open a support incident with MS and let them analyze the crash dumps.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Johnsaida" wrote in message
news
Hi Ken Slovak,
I am very hapy to see your answer.But one thing i need to clarify is, the
eror message is not occuring in all the machines in which the addin was
installed.In some machines only it is occuring.
In one machine i have reinstalled the outlook2003 Service Pack 3 and
clicked
the'Detect and Repair' button in the Help Menu of Outlook.After doing this
that error message was not appeared.I dont know what is happend in this
action.

But it is not feasible if the error occured in more number of client
machines(Say 100).Do you have any clue to get permanent solution.It would
be
greate if you give response on this.
Many Thanks,
John


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
SBS2003 OLK2003 double booking resource ColinC[_2_] Outlook - Calandaring 0 December 2nd 08 11:37 AM
Turn off cached mode in OLK2003 Jeroen Outlook - General Queries 0 October 15th 07 03:35 PM
Displaying a custom message form on the New menu Darren Outlook - Using Forms 2 February 7th 07 01:50 PM
olk2003.pst read by olk2000 Hajo Verheyen Outlook - General Queries 2 October 22nd 06 09:33 AM
Outlook Form displaying error Marcus Outlook - Using Forms 1 September 11th 06 06:35 PM


All times are GMT +1. The time now is 12:48 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.