V
Vincent Finn
Hi,
I have a C# function being called from an XML file
I have hit a problem access a COM component
I use CreateObject to create the object but I can't access its
functions
object tchart = CreateObject("TeeChart.TChart");
tchart.Export();
If I swap to using VB.Net I can do this fine but not in C#
I know this is due to the fact that VB uses late binding and C#
doesn't.
Is there a way of doing this in C#?
Vin
I have a C# function being called from an XML file
I have hit a problem access a COM component
I use CreateObject to create the object but I can't access its
functions
object tchart = CreateObject("TeeChart.TChart");
tchart.Export();
If I swap to using VB.Net I can do this fine but not in C#
I know this is due to the fact that VB uses late binding and C#
doesn't.
Is there a way of doing this in C#?
Vin