J++ to J# upgrade of _IDTExtensibility2 Addin

M

Marc

I'm getting the following error after I upgraded a a J++ project to J#, does
anybody know what the correct declarations for the unrecognized functions
is?

V:\tradingscreen\tsexcel\tsprice\Addin.java(26,7): error VJS1170: 'Addin'
must be declared abstract or these methods must be implemented:
AddInDesignerObjects._IDTExtensibility2.OnAddInsUpdate(byref System.Array),
AddInDesignerObjects._IDTExtensibility2.OnBeginShutdown(byref System.Array),
AddInDesignerObjects._IDTExtensibility2.OnConnection(System.Object,AddInDesi
gnerObjects.ext_ConnectMode,System.Object,byref System.Array)...

public class Addin implements AddInDesignerObjects._IDTExtensibility2
{
// _IDTExtensibility2 interface


public void OnDisconnection(AddInDesignerObjects.ext_DisconnectMode
removeMode, System.Array custom) {}


public void OnStartupComplete(System.Array custom) {}
public void OnAddInsUpdate(System.Array custom) {}
public void OnBeginShutdown(System.Array custom) {}
public void OnConnection(Object application,
AddInDesignerObjects.ext_ConnectMode connectMode, Object addInInst,
System.Attay custom) {}
}
 

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