I would like to use the values declared in the Enum section and get the names of those variables.
Private Enum Bks
[_First] = 0
English = 0
Maths = 1
Science = 2
[_Last] = 2
End Enum
Dim MyBooks(2) As Boolean
Private Sub cmdEnumTrial_Click()
Dim ChosenBooks As String
Dim Runr As...