标签: vb6
在datepicker中我使用DateValue(Now)来获取当前日期。它给出了日期 - 月 - 年
但我只需要存储同一个日期选择器中的月份值。我该怎么办?
答案 0 :(得分:3)
可以使用Format $函数从日期中提取月份:
Print "Month is ";Format$(yourDateValue,"mm")
有关所有可能性,请参阅this page。
答案 1 :(得分:2)
要将月份作为字符串使用格式为理查德建议 MsgBox "Month name is " & Format$(yourDateValue, "mmm")
MsgBox "Month name is " & Format$(yourDateValue, "mmm")
要获取月份编号,请使用DatePart MsgBox "Month number is " & DatePart("m", yourDateValue)
MsgBox "Month number is " & DatePart("m", yourDateValue)