Guest User

Untitled

a guest
Jul 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Select Case name
  2. Case "FSTF"
  3. .....
  4. Case "FSTF"
  5. .....
  6. End Select
  7.  
  8. switch{
  9. case "FSTF":
  10. ....;
  11. break;
  12. case "FSTF":
  13. ....;
  14. break;
  15. }
  16.  
  17. The Label 'case "FSTF":' already occurs in this switch statement.
Add Comment
Please, Sign In to add comment