Hide show toolbar button

Hi,

Is there an hescript to hide or show button in toolbar ?

Thank-you

Ok, found it:

procedure Procedure2;
begin
SetUIProp(“Toolbar1bprint”, “Visible”, “FALSE”);
end;

It will hide print button

1 Like

Sure, it works like that.
Any “simple” property available in the UI Editor / Properties Editor can be modified at runtime using SetUIProp.

1 Like