The MonthName function returns the localised month name of a specified month number.
This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.
MonthName(Month as Integer [,Abbreviate as Boolean])
String
Month: Value from 1 to 12, January to December, whose localised month name needs to be returned.
Abbreviate: Optional. A Boolean value that indicates if the month name is to be abbreviated.
5 Invalid procedure call
REM ***** BASIC *****
Option VBASupport 1
Sub Example-MonthName
Dim mBirthday as Integer
mBirthday = 1
print mBirthday &" "& MonthName(mBirthday,False)
End Sub