Good morning at all!
I have a report where something fields (8) are populate with db query and one with formula.
When I call the report from my vb.net project, if "Condition=false" then I want to hide 4 of this fields and that calculated.
How can I resolve my problem?
Thank you.
Hide / Show fields and formula under condition
Hide / Show fields and formula under condition
Hello.
Thank you.
You could set the condition of these 4 components and remove Enabled checkbox.Girasole wrote:Good morning at all!
I have a report where something fields (8) are populate with db query and one with formula.
When I call the report from my vb.net project, if "Condition=false" then I want to hide 4 of this fields and that calculated.
How can I resolve my problem?
Thank you.
- Attachments
-
- 1636.ConditionEnabled.png (22.79 KiB) Viewed 3441 times
Hide / Show fields and formula under condition
Thank you for your reply.
I need to do this by writing code vb.net. It's possible?
Thank you
I need to do this by writing code vb.net. It's possible?
Thank you
Hide / Show fields and formula under condition
Hello.
Thank you.
Please, try to use next code for each component:Girasole wrote:Thank you for your reply.
I need to do this by writing code vb.net. It's possible?
Code: Select all
rep.GetComponentByName("Text11").Enabled = false