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) {}
}
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) {}
}