0

这里是 LotusScript 的新手,所以请保持温柔 ;)

为什么这段代码会给我错误Unexpected: .; Expected: End-of-statement

Dim curDate As New NotesDateTime(Today)
Dim test
Set test = Day(curDate).DateOnly   ' <- causes the error

谢谢你的帮助。

4

1 回答 1

1

你必须写

Set test = Day(curDate.DateOnly)

因为DateOnly是 curDate 的一个属性。

于 2013-10-04T19:09:32.690 回答