Print Page | Close Window

supress fields at run-time

Printed From: Crystal Reports Book
Category: Crystal Reports for Visual Studio 2005 and Newer
Forum Name: Report Design
Forum Discription: The best way to design a report and problems you have encountered
URL: http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=17599
Printed Date: 06 Apr 2025 at 5:11am


Topic: supress fields at run-time
Posted By: marcstrong
Subject: supress fields at run-time
Date Posted: 19 Sep 2012 at 9:25am
Hi

I'm looking for a way to supress fields in a similar manner to how I  supress text  below:

 Dim myReport As New CrystalReport1
        Dim myText As CrystalDecisions.CrystalReports.Engine.TextObject
       
        myText = CType(myReport.ReportDefinition.ReportObjects.Item("Text4"), CrystalDecisions.CrystalReports.Engine.TextObject)
        myText.ObjectFormat.EnableSuppress = True
        CrystalReportViewer1.ReportSource = myReport

Any advice would be appreciated





Replies:
Posted By: lockwelle
Date Posted: 27 Sep 2012 at 5:05am
you can't really suppress a field...it's part of the schema.
 
you can suppress any object that displays the field.
 
HTH



Print Page | Close Window