Guest User

Untitled

a guest
Jul 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. Module Module1
  2.  
  3. Sub Main()
  4. Dim sec3question5Answer As answers
  5.  
  6. 'To test
  7. Select Case sec3question5Answer
  8. Case answers.d
  9. 'shoWsec3question8 = true
  10. Case answers.b And answers.c And answers.d
  11. 'shoWsec3question8 = true
  12. 'Case etc etc
  13. End Select
  14. End Sub
  15.  
  16. Public Enum answers
  17. a = 1
  18. b = 2
  19. c = 4
  20. d = 8
  21. End Enum
  22.  
  23. End Module
Add Comment
Please, Sign In to add comment