在VB中,日期型數據可以使用Date類型來表示。可以使用Now函數獲取當前日期和時間,或者使用DateSerial函數創建指定日期和時間的日期對象。另外,還可以使用DateValue函數將字符串轉換為日期型數據。以下是一些示例:
獲取當前日期和時間:
Dim currentDate As Date
currentDate = Now
創建指定日期和時間的日期對象:
Dim specificDate As Date
specificDate = DateSerial(2020, 12, 31) ' 表示2020年12月31日的日期對象
將字符串轉換為日期型數據:
Dim dateString As String
dateString = "2020-12-31"
Dim convertedDate As Date
convertedDate = DateValue(dateString)