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

Access band controls in Designer

edited May 2005 in General
Hi !

I'm using a skinning component, which works fine with Reportbuilder 9, only
problem is the background color in the Designer (normally white, the area
below the tabs where the bands are displayed and edited).

I can disable skinning specific controls by setting the controls tag.
Does this area have an specific name I can use with Findcomponent(), or is
there any other way to set these areas tag(s) ?

TIA

Heiko Kn?ttel

Comments

  • edited May 2005

    The TppDesigner.Form property provides access to the designer form. You have
    to typecast it as TppDesignerWindow. The TppDesignerWindow.Workspace
    property provides access to the Workspace, which is a TPanel descendant.

    uses
    ppEndUser, // defines TppDesigner class
    ppDsgner; // defined TppDesignerWindow class


    lDesignerWindow := TppDesignerWindow(myDesigner.Form);

    lDesignerWindow.Workspace




    --
    Nard Moseley
    Digital Metaphors Corporation
    http://www.digital-metaphors.com


    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
  • edited May 2005
    Thanks a lot !!
This discussion has been closed.