Forum Discussion

nate_fielding_6's avatar
nate_fielding_6
Icon for Nimbostratus rankNimbostratus
Aug 10, 2006

Distribution Monitor

I downloaded the Distribution Monitor for C from the downloads page and was trying to run it when i got an error about AxMSChart20Lib and MSChart20Lib were missing, both are references. I assume they are noth used for creating the graph to measure the member statistics. If anyone has these two files I would appricate it if they could tell me where to download them or if I have to create them, if anyone can give me an idea on how to create them.

 

 

thanks,

 

nate

1 Reply

  • This sample program makes use of the Microsoft Chart Control which is part of vs2003 (and most likely 2005). Since the chart control is a COM object and not a native .NET control, VS needs to create interop assemblies to bridge the .NET program to the COM controls.

     

     

    Look in the References section of the solution tree in that project. Odds are you'll need to manually add a reference to the chart control. Right click on References, and select "Add Reference". Then under the COM tab, scroll down to the Microsoft Chart Control, select it, and then click OK to apply it to your project (instructions for VS2003).

     

     

    This should fix the unresolved symbols. If for some reason you don't have the Microsoft Chart Control on your system, then you may have deselected it as an option in the VS install.

     

     

    Good luck!

     

     

    -Joe