Hi Achileas,
I mean that you should make a macro in the Excel-DNA add-in which would do the CTP stuff.
In C# it would be:
public static class MyMacros
{
public static void ShowTheTaskPane()
{
// Here you call the Excel-DNA CTP stuff
}
}
or in
VB.NET your add-in code would be
Public Module MyMacros
Public Sub ShowTheTaskPane()
' Here you call the Excel-DNA CTP stuff
End Sub
End Module
Then the macro in VBA would look like this:
Sub ShowCTP()
Application.Run "ShowTheTaskPane"
End Sub
I think that might work, but have not tried it myself.
-Govert