CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Dec 2010
    Posts
    907

    Is it worthwhile to write an ActiveX module dedicated to drawing charts?

    I know the user installation must involve some registry manipulations and
    some other trickery. But the ActiveX way seems to be more modular.
    Is it worthwhile to separate the charting modules from the exe and make an activex dll
    for this purpose?
    Thanks
    Jack

  2. #2
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: Is it worthwhile to write an ActiveX module dedicated to drawing charts?

    It depends on the ultimate purpose. ActiveX is mostly suitable for cross-language applications, or being re-used in a certain family/domain of applications. Or in case your intention is to make some business on selling the component. In the latter case you're going to compete with really big players on the market.

    MSChart Control
    Best regards,
    Igor

  3. #3
    Join Date
    Dec 2010
    Posts
    907

    Re: Is it worthwhile to write an ActiveX module dedicated to drawing charts?

    Thanks.... I don't mind if I could reuse some other's work unless I have to pay a big deal.
    Jack

  4. #4
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Is it worthwhile to write an ActiveX module dedicated to drawing charts?

    If you don't already know COM, writing an ActiveX control is kind of a big undertaking.

  5. #5
    Join Date
    Apr 2000
    Location
    Belgium (Europe)
    Posts
    4,626

    Re: Is it worthwhile to write an ActiveX module dedicated to drawing charts?

    Quote Originally Posted by Arjay View Post
    If you don't already know COM, writing an ActiveX control is kind of a big undertaking.
    Even if you DO already know COM. It is still kind of a big undertaking (compared to a "simple" library, dll or set of (template) classes).

  6. #6
    Join Date
    Jul 2013
    Posts
    576

    Re: Is it worthwhile to write an ActiveX module dedicated to drawing charts?

    Quote Originally Posted by lucky6969b View Post
    Thanks.... I don't mind if I could reuse some other's work unless I have to pay a big deal.
    Jack
    Here's an article with source code. It's not charts but it is ActiveX and it draws something,

    http://www.codeproject.com/Articles/...ctiveX-Control

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured