biddingbong
IS-IT--Management
Is there a function in VB to get the number of a specified month?
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.
Public Function GetMonthNumber(strMonth as String) as Integer
Select Case UCase(strMonth)
Case "JANUARY": GetMonthNumber=1
.
.
.
End Select
End Function