Monday, October 17, 2011

Setting propperties on a FormControl without AutoDeclaration

When you want to set a property of a control on a form without setting the property AutoDeclaration = yes. You can address the control trough the following code, knowing that element is a FormRun-object:
 
------------------------------------------------------------
element.design().controlName("btnOk").visible(false);
------------------------------------------------------------

No comments:

Post a Comment