PhilMurwin / growl-for-windows

Automatically exported from code.google.com/p/growl-for-windows
0 stars 0 forks source link

Outlook Addin doesn't work in Outlook 2007 #23

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install the Growl-Outlook-Addin on a german Outlook 2007 
2. The Addin fails to start, the "Addin tasks" doesn't show and the plugin 
won't register with the growl service.

What is the expected output? What do you see instead?
A message "outlook registered" and growl notifications on incomming mails.

What version of the product are you using? On what operating system?
Growl 2.0.1, AddIn from the growl for windows homepage.

Please provide any additional information below.
I compiled the Addin (revision 116)in VS2008 and got it fixed eventually: 
it now starts with Outlook2007 and registers / notifies properly. 
It seems that this throws an out of range exception:
_helpMenuIndex = _menuBar.Controls[MENU_BEFORE].Index; 
So I changed it to _helpMenuIndex = _menuBar.Controls.Count; which 
effectively puts the menue item before the Help entry.
I would have committed a patch but since I had to compile in VS2008, there 
are other changes in the project, not only in the partial class 
ThisApplication. 

Original issue reported on code.google.com by t0bit0b...@gmail.com on 3 Jan 2010 at 3:12

GoogleCodeExporter commented 9 years ago
thanks for the fix. that code was bound to break in non-English languages 
(since it
was searching specifically for a menu called 'Help'), so this is a better 
solution. i
will update the code and post a new version. thanks again for reporting this and
especially for finding the bug and suggesting the fix.

Original comment by briandun...@gmail.com on 4 Jan 2010 at 5:20

GoogleCodeExporter commented 9 years ago
i uploaded the corrected version to the GfW website:
http://www.growlforwindows.com/gfw/plugins/outlook

should work for non-English versions now. thanks again.

Original comment by briandun...@gmail.com on 4 Jan 2010 at 6:04