ItemsCB do not compile to VS -NET 2k3

  • Thread starter Thread starter Carsten Lahme
  • Start date Start date
C

Carsten Lahme

Hi NG's

does anybody have a link to a working .NET-Version of ITEMCB?

I downloaded the VB6-Version and imported it in .NET, but there are
remaining errors, I can not resolve.

Thanks in Advanced

Carsten.

PS: My Problem I try to work out is, that Outlook doesn't quit. It
hangs, as soon as any Code from My Addin has been executed during the
session. I already set all variables to nothing. But it doesn't help.
So I was looking for a solution in ItemsCB.
 
ItemsCB is COM only (VB 6). Like any VB 6 project just importing it into
VB.NET isn't going to work. There are fundamental incompatibilities from the
redefinition of the Integer type to the loss of definitely knowing when
objects have been released (in .NET you have to rely on the garbage
collector there is no final release of objects by setting them to Nothing).

I'd suggest looking at the information about .NET development
http://www.microeye.com/resources/res_outlookvsnet.htm. That has the most
complete list of information about developing for Outlook using .NET
languages.
 
Back
Top