Month(number)
Returns an integer between 1 and 12, inclusive, that represents the month of the year.
Related Topics: Day, Hour, Weekday, Year
Example:
Sub Main
MyDate = "03/03/96"
print MyDate
x = Month(MyDate)
print x
End Sub