Define size of In_Exclude field
-
On 21/08/2017 at 03:02, xxxxxxxx wrote:
How can I define the vertical size of an In_Exclude field in my res file?
I like to limit it to, for example, 5 entries.
After that a scrollbar should be visible.GROUP SETTINGS { IN_EXCLUDE MY_LISTBOX {OPEN;} }
-
On 22/08/2017 at 06:07, xxxxxxxx wrote:
Hi,
since R18 (C++ docs changes in R18) the InExclude CustomGUI got extended.
In a resource file you can use the parameters SMALL_MODE_SIZE and BIG_MODE_SIZE to set the size in small/non-extended and in big/extended mode (flag OPEN), the constants to use in GetDDescription() are to be found in above link with R18 changes.Note that the size is not passed in pixels, but rather has to be calculated by SizePix().
-
On 23/08/2017 at 01:42, xxxxxxxx wrote:
Clear, thank you.