We use 'int' constants to enumerate fields. Something like
private static final int FO_FIRST_NAME = 0;
private static final int FO_LAST_NAME = 1;
private static final int FO_COUNTRY = 2;
:
private static final int FO_EMAIL = 98;
Inserting the field 'FO_ADDRESS' at position 2 result in manual re-enumerate all the fields from FO_COUNTRY to FO_EMAIL. So it would be nice to have a 'Enumerate' function. Codewright (a programmers editor) for example use the first two selected indices (in this case 0 and 1) as starting values and the difference between this values as incrementation step (in this case 1) and enumerate all the following selected indices.
It would be great if you can implement something like that!
Thanks
Logged In: YES
user_id=1481130
Originator: NO
Please use "Fill Column" starting with 2 or 3 and use it in the whole column.