2009-04-14 11:50 UTC
Hello everybody !
I need to translate the captions of all the controls of a form when initialize.
It works well, except on tab script control:
(foreach control (dcl_Form_GetControls Test_Form1)
(setq props (dcl_control_getProperties control ))
(if (member "Caption" props) (dcl_Control_SetCaption control (Translate (dcl_Control_GetCaption control )))
)
But dcl_Form_GetControls does not return the controls inside the pages of a tab control.
How can I get these controls ?
Thanks for your help !
I need to translate the captions of all the controls of a form when initialize.
It works well, except on tab script control:
(foreach control (dcl_Form_GetControls Test_Form1)
(setq props (dcl_control_getProperties control ))
(if (member "Caption" props) (dcl_Control_SetCaption control (Translate (dcl_Control_GetCaption control )))
)
But dcl_Form_GetControls does not return the controls inside the pages of a tab control.
How can I get these controls ?
Thanks for your help !