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

Tool tips on reports

edited August 2002 in General

The broken tool tips are becoming a problem. Will these not work until the
new version comes out? Is there a patch? When is the new version of
ReportBuilder due?

Regards,

Kieron


--
--
Kieron G Smith
helpIT systems ltd
kieron@finditx.com
http://wwww.helpit.co.uk/

Comments

  • edited August 2002
    Add this unit to your project and you should see the hints in the previewer:

    unit ShowHintPreviewPlugin;

    interface

    uses
    ppPreview, ppTypes;

    type

    {@TppShowHintPreviewPlugin}

    TppShowHintPreviewPlugin = class(TppPreview)
    public
    procedure BeforePreview; override;

    end;

    implementation

    procedure TppShowHintPreviewPlugin.BeforePreview;
    begin

    inherited BeforePreview;

    Toolbar.ShowHint := True;

    end;

    initialization
    TppPreviewPlugIn.Register(TppShowHintPreviewPlugin);

    finalization
    TppPreviewPlugIn.UnRegister(TppShowHintPreviewPlugin);


    end.

    Cheers,

    Jim Bennett
    Digital Metaphors

This discussion has been closed.