Hey there,
i'm a bit wondered, that nobody asked this before, or i'm just to blind to find this topic...
Every IG Control has some properties set to "Default". How i can set this default value in a global project scale?
My intention is, to change the property "AutoCompleteMode" of all "UltraComboEditor" and "UltraCombo" to "SuggestAppend". All controls got as value "Default" in this property.
This is a change in a pretty big project, so i don't want to change this for every control in every single form.
Thank you :)
One potential approach you could take here that would minimize the amount of code you need to change would be to derive a control from UltraComboEditor and then set this property (and any others you want) in the Controls constructor. That way, you only have to set the property once, and then just do a Find/Replace to change the type from UltraComboEditor to your derived type without any other code changes.
That's a good idea!
I really thought, the default value would be configurable. What purpose does it have anyways? (It always represents one value that's also in the options for the property, so why not just set it to this value...?)
My request was answered, thank you