CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Mike Harnad

Search: Search took 1.23 seconds.

  1. Replies
    16
    Views
    15,369

    Re: C++ MFC MSChart

    Sorry, I've never used the MSChart control. Perhaps you can find what you're looking for here .
  2. Replies
    16
    Views
    15,369

    Re: C++ MFC MSChart

    I've never used MSChart, but, from looking at what you posted, it appears that you need to use the put_ChartData() method. This is probably due to the fact that C++ is hosting a visual basic...
  3. Replies
    16
    Views
    15,369

    Re: C++ MFC MSChart

    If you added the control through the resource editor, it should have generated a wrapper class for you. The wrapper class will contain the definition for the CMSChart object. You'll need to make...
  4. Replies
    16
    Views
    15,369

    Re: C++ MFC MSChart

    Have you followed the steps to add the chart object to your dialog? The object should be of type CMSChart, not CWnd.
  5. Replies
    16
    Views
    15,369

    Re: C++ MFC MSChart

    Since MSChart is an ActiveX control, it can be used with any language that speaks COM, including C++. Take a look at this article . It should help get you started.
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured