Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

TwGrid with RB 9

edited April 2005 in General
Has anyone managed to modify TwGrid to work with RB9?

Thanks, Tom.

Comments

  • edited April 2005
    Hi Tom,

    There were some major changes made in RB 9 to how it handles report
    components. These changes will have to be made to any existing add-on
    components for ReportBuilder. Below is an article with more information...

    ---------------------------------------
    Article: RB 9 Architecture Changes
    ---------------------------------------

    ReportBuilder 9 includes architecture changes to more cleanly separate
    Designer code from Report code. The code related to component popup menus
    and design controls has been broken out into separate classes.

    For an example, check out RBuilder\Demos\RCL.


    1. The myChkBox.pas unit contains the component classes....


    TppCustomComponent

    |
    |

    TMyCustomCheckBox

    |
    |-- TmyCheckBox
    |
    |-- TmyDBCheckBox


    2. The myChkBoxDesign.pas unit contains popup menu and design control
    classes. These are compiled into a separate package.


    A. Popup Menu classes....

    TppComponentPopupMenu

    |
    |

    TmyCustomCheckBoxPopupMenu

    |
    |-- TmyCheckBoxPopupMenu
    |
    |-- TmyDBCheckBoxPopupMenu


    B. Design Control classes.....



    TmyCustomCheckBoxControl

    |
    |

    TmyCustomCheckBoxPopupMenu

    |
    |-- TmyCheckBoxControl
    |
    |-- TmyDBCheckBoxControl


    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited April 2005
    Hi Tom,

    There is also a new third party component called GridPack that you may want
    to check out. http://www.planitechnologies.com/

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited April 2005
    Nico Cizik (Digital Metaphors) wrote:

    Thanks for that.

    Cheers, Tom.
This discussion has been closed.