Subject | Suggestion; the Params (TIB_SQLDA) dialog |
---|---|
Author | |
Post date | 2017-09-21T10:18:12Z |
Jason,
It would be a boon for me if the dialog could:
- Have re-sizeable column headers (preferably auto-sized to fit upon opening).
- Allowing me to copy the parameter list so i can paste it into my .pas unit*
- Allowing me to completely clear the parameter VALUES in the DFM (i never use DFM "default" for values, some strings parameters take up a lot of space, i.e. 'PARAM=00002020202020...).
TIA and regards,
/Dany
* A simple list will do either cr/lf or comma separated. Some competition have some checkboxes for formatting the result before its copied, a neat idea IMO.
What i do with this specific list:
const
cCATEGORY_VALUE = 0;
cANOTER_QUERY_PARAMETER = 1;
...
IB_Component.Params[cCATEGORY_VALUE].AsType := Value;
...
So you see i'll be saving some typing time.