I have the following enum in Delphi:
type TChangingDataSetState=(Inserting=1,Editing,Deleting)
......
var
ChangingDSSsate:TChangingDataSetState;
In BeforePost event I check if the dataset in Insert mode then I
ChangingDSState:=Inserting
else
ChagingDSState:=Editing
Let's say the dataset is in edit mode, it means my ChangingDSState var will get evuluated to 2(Editing). Now I want to know how I can then use that number to pass it as an argument to a procedure

=1inside the declaration ofTChangingDataSetState? – Uli Gerhardt Aug 11 '11 at 7:22TChangingDataSetState=(Inserting=1part, didn't know you can force the enumeration values like this, pretty cool, when was this introduced ? – Johan Aug 11 '11 at 14:30=1introduces non-standard behaviour he possibly doesn't need. And if he doen't need it he might circumvent some issues be sticking to idiomatic use. – Uli Gerhardt Aug 11 '11 at 15:44