1) Error not mentioned in NT7 Help but is recognized by the NT7 editor / compiler and works in Sim mode.
2) Error="NoError" and NativeError="" when OK.
3) The following code seems to work, any limitations?
OnOrderUpdate (IOrder orderHandle)
{
if (orderHandle.Error != ErrorCode.NoError)
{
Print("Problem");
}
}

Comment