Hide a childband

Hi NG,

Is it possible to hide a childband? I tried it this way, but it does't work because all childband get invisible!


childband1.visible := false

huby

Comments

  • edited 7:00PM
    Yes, your need to change parent property Child. if you need hide set it in nil, if show Child = childband1. For sample:
    if <Line#> = 4 then
    MasterData1.Child := nil
    else
    MasterData1.Child := Child1
  • edited 7:00PM
    Thanks for your answer.

    I found the solution to this problem. First in Delphi I've to get the access to all the childbands I want to include/show and exclude/hide.

    [code]
    var cb1, cb2 ??¦: TfrBandView;
    ??¦
    cb1 := FindObject('childband1') as TfrBandView;
    cb2 := FindObject('childband2') as TfrBandView;
    ...
    wrote:

    Then I can concatenate the childbands
    cb1.ChildBand := cb2.Name; ??¦

    ??¦ and it works fine! ;)
  • edited 7:00PM
    Sorry, I used the wrong buttons to code my examples! ;)

Leave a Comment