I have a form with multiple TEXT_AREAS and I was hoping that when the form increased in size that the text_areas would also. However I only appear to make the first one grow vertically. Is there some way of specifying that all of them should resize vertically?
As you probably know each form element has anchoring support. But that means those elements will resize/move 100% with the form (to either direction).
But if you want to let elements resize/move proportionally within the layout (which is I think what you are asking here) then you have to manage that yourself using the onResize form event.
Under this event you then need to put code that size and position the elements you want to resize/move proportionally.
I suspected that might be the case thanks for clarifying.
Do you know if there is a way to attach additional properties to elements - in Foxpro you could create classes with all your extra information added so that in the interface you could set value - can that be done in Servoy?