Great, that works perfectly. One more along those same lines...I have an enum like the following:
Public Enum VerifyCode
OkToApprove
CannotApprove
AERequired
End Enum
I want to use this enum to populate a combo, which I know how to do. I also set the PascalCase to true, so they show up correctly. I get "Ok To Approve" and Cannot Approve", but I want the last one to show up as "A/E Required". Is there anyway to override the display value for only one enum value like this?