如何获得月份;从该日起的一年
Date = 01/02/2012 (dd/mm/yyyy)
从上述日期开始,我想获得02/2012 (mm/yyyy)
如何在vb6中编写代码
需要vb6代码帮助
答案 0 :(得分:6)
您可以使用Month()
和Year()
函数来获取Date参数。
即。 Month(Now)
将返回月份,Year(Now)
将返回年份。
Dim yourDate As Date
yourDate = #01/02/2012#
Dim yourMonth As Integer
Dim yourYear As Integer
yourMonth = Month(yourDate)
yourYear = Year(yourDate)
答案 1 :(得分:5)
您可以使用Format$
:
Dim formattedDate as String
Dim myDate as Date
myDate = #1/2/2012#
formattedDate = Format$(myDate, "mm/yyyy")