Changing CrystalReport in Runtime

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm Roby Eisenbraun Martins. I'm C++, VB, C# and ASP .NET developer.
I'm Trying to hide objects in the crystal reports with C# code
(runtime). I can hide the TextObject, but I really can't find a way to hide a
FieldObject.

Thank you,
Roby Eisenbraun Martins
 
If you mean have them not appear for some reports an appear for other
reports, I usually just use formulas within Crystal. That is, I create
a formula that says "if field a has value b then return "" else return
field x". That way, field x shows up if a != b, otherwise nothing shows
up. I then place the formula, not the field, on the report.

Is that the sort of thing you're after?
 
Back
Top