is it impossible?

Hi, I want change programmicaly my report contol properties values. example: CurrReport.label5.visible = TRUE or CurrReport.label5.caption = " Hello world :slight_smile: " is it impossible? Thanks Augis Rimkus

You are correct. It is impossible to change the visible properties of a report dynamically. You can “simulate” this by using a text box instead and blanking out it’s value. Bill Benefiel Manager of Information Systems Overhead Door Company billb@ohdindy.com (317) 842-7444 ext 117

well you can use sections to hide or show something dynamically in navision… but that will be applied for the whole sections and not on a label.

Well you could use sections but william’s way is the correct way. Use a global text variable and use that as the source for a text box. Then you can ‘programmicaly’ set this to null or any value you like. Paul Baxter

The best solution is use a TextBox not a label, if the textbox source Expresion is a Variable you can change the values in running time.