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

Deploying the label template wizard?

edited September 2004 in General
I have an app that calls the label template wizard in code. What must I
deploy with my app to make the list of labels and the component
captions available when I invoke the wizard?

--
_Bill_

Comments

  • edited September 2004
    Try either using this or getting the info you need from it. I did this
    about a year ago. To change a reports label layout call:
    try
    frmLabelDialog := TfrmLabelDialog.Create(Self);
    frmLabelDialog.ChangeRep := aReport;
    frmLabelDialog.ShowModal;
    finally
    frmLabelDialog.Free;
    end;

    where aReport is the report you want to change. The dialog will display and
    the report will be altered temorarily!

    Hope this helps,
    Branden Johnson
  • edited September 2004
    Oops!!! Its actually attached to this one!!!
  • edited September 2004
    Hi Bill,

    Below is a link to an example that shows how to launch the label template
    wizard in code separate from ReportBuilder. This may help with both of the
    issues you have encountered.

    http://www.digital-metaphors.com/tips/LaunchLabelWizardInCode.zip

    --
    Regards,

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

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.