Postby BeeJay » Mon Nov 03, 2014 11:41 am
It depends on what you mean by 'form properties'.
For example, do you mean is it possible to set the options that appear in the list for a given ComboBox using the Jade Painter, then the answer is that this is not possible for a standard Jade ComboBox. If you want to have several ComboBoxes on several forms all having the same 'default' set of list entries, then you could potentially create your own subclassed control, and populate the entries available in that ComboBox using the windowCreated event on that subclassed control to add the desired 'default' set of list entries.
Alternately, if you want to be able to supply the values to use at runtime via a properties sheet, again you may be able to achieve this via your own designTime property on your own subclassed control.
For the most part, I've never needed/wanted to do this in a real system as you're often populating the entries available in a ComboBox from persistent model objects in your system. For example, a collection of 'code-table' values in a given 'code-table group'.
Cheers,
BeeJay.