S
shapper
Hello,
I have the following Enum
Public Enum Mode
Required
Validate
End Enum
How can I make a variable of type Mode to hold both Required and
Validate values without needing to add an option to my enum named
RequiredValidate?
And how can I check if that variable contains Required, Validate or
Required and Validate?
Is this possible?
Thanks,
Miguel
I have the following Enum
Public Enum Mode
Required
Validate
End Enum
How can I make a variable of type Mode to hold both Required and
Validate values without needing to add an option to my enum named
RequiredValidate?
And how can I check if that variable contains Required, Validate or
Required and Validate?
Is this possible?
Thanks,
Miguel