Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Private Enum AnEnumDemo
First = 1
Second = 2
third
fourth = 3
End Enum
Private Enum DifferentEnum
Eighth = 8
End Enum
Private Sub Command1_Click()
DoSomethingWithEnum third
DoSomethingWithEnum Eighth
DoSomethingWithEnum "11"
DoSomethingWithEnum 3.14
End Sub
Private Sub DoSomethingWithEnum(myEnum As AnEnumDemo)
Debug.Print myEnum
End Sub