Month function

Month( number )

Returns an integer between 1 and 12, inclusive, that represents the month of the year.
Sub Main
   MyDate = "03/03/07"
   print MyDate
    x = Month(MyDate)
   print x
End Sub