I have a Table:
Config
ConfigName ConfigValue ConfigType DefaultQPPrune 180 Integer DefaultQPSize 8 Integer ShowQP True Boolean
Where the ConfigType Field can be any of the following values:
- 1 - Boolean
- 2 - Date
- 3 - Double (decimal, double, single, and currency)
- 4 - Integer (integer and long)
- 5 - String
I'm trying to make a Continuous Form that, depending on the value of the ConfigType Field, dynamically choose to display ConfigValue in a Check Box/Combo Box (for ConfigType 1) or a Text Box (for ConfigTypes 2-5) with the Date Picker (ConfigType 2 only).
Is this possible?