Home End User

Can i hidden a field in TppDBPipeline ( no field in Designer ) ?

edited November 2002 in End User
Can i hidden a field in TppDBPipeline ?

I don't want see ALL field in Designer.
can i hidden any fields in Report Designer ?

Note : the table in NOT in DATA page , but , it is in
Delphi Form ( myTTable -> myTDataSource -> TppDBPipeline -> TDesigner )

tnx.

Comments

  • edited November 2002
    > Note : the table in NOT in DATA page , but , it is in

    P.S. :

    myppDBPipeline.Fields[x].enabled := False
    or
    myppDBPipeline.Fields[x].Visible := False

    is NOT available.
  • edited November 2002
    Hi Marco,

    a) use a 'TppDataDictionary'
    or b) create the fields for the dataset at designtime
    or c) create the fields for the pipeline at designtime

    HTH,
    Chris Ueberall;
  • edited November 2002
    Free the field object.

    TppDBPipeline(ppDesigner1.Report.DataPipeline).Fields[aIndex].Free;



    Cheers,

    Jim Bennett
    Digital Metaphors

  • edited November 2002
    a) use a 'TppDataDictionary'
    or b) create the fields for the dataset at designtime
    or c) create the fields for the pipeline at designtime

    i have tried , this , already but... i have a problem ,

    if TABLE is in DATA DESIGNER PAGE , the Field Caption is changed ( OK !! )
    if TABLE is in My Delphi Form , the Field Caption is NOT changed
    with dizionary value.
  • edited November 2002
    > TppDBPipeline(ppDesigner1.Report.DataPipeline).Fields[aIndex].Free;

    hmmm ,

    May you create in the next RB update , .ENABLED or .VISIBLE property ?


    TppDBPipeline(ppDesigner1.Report.DataPipeline).Fields[aIndex].Visible :=
    False;
This discussion has been closed.