I got into a situation where the TDBAdvGrid is not correctly painted and I'm getting an exception "Gleitkommaüberlauf" (Floating point overflow ?)
Debugging the problem I identified a column of my table and finally a row with a varchar field with the text '0E2000' (or similar values beginning with 0E).
The error occurs in AdvGrid.StringListCompareLogical in one of the lines
val(List[Index1], v1, e1);
val(List[Index2], v2, e2);
when sorting the filter dropdown list.
My problem: How can I solve this? I think there is missing an error handling at this place.
Thanks in advance
Björn