在VB中,Date函數用于返回當前日期和時間。
例如:
```
Dim currentDate As Date
currentDate = Date()
```
上述代碼中,currentDate將被賦值為當前日期和時間。
Date函數還可以用于返回指定日期的日期值,可以傳入年、月、日等參數來指定日期。
例如:
```
Dim specificDate As Date
specificDate = Date(2022, 12, 25)
```
上述代碼中,specificDate將被賦值為2022年12月25日的日期值。