Lotusscript 日期时间问题
我在视图中存储了几个日期。我正在使用 getItemValue 来检索它们。
将repsondedDate变暗为NotesDateTime
Set repsondedDate = timePart1doc.GetItemValue("dateResponded")
当我尝试执行以下操作时,我在运行时遇到类型不匹配的情况。
Dim dateDifference As double
设置 dtLocal = New NotesDateTime( 现在 )
dateDifference = repsondedDate.Timedifference(dtLocal)
有人对出了什么问题有任何想法吗?
I have a couple of dates stored in a view. And I am using getItemValue to retrieve them.
Dim repsondedDate As NotesDateTime
Set repsondedDate = timePart1doc.GetItemValue("dateResponded")
When I try to do the following, I get a type missmatch at run time.
Dim dateDifference As double
Set dtLocal = New NotesDateTime( Now )
dateDifference = repsondedDate.Timedifference(dtLocal)
Does anyone have any ideas on what is going wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下行返回一个数组:
所以应该是:
如果我没记错的话,您应该使用 GetItemValueDateTimeArray 方法而不是 GetItemValue,所以它实际上应该是这样的:
希望有帮助
The following line returns an array:
So it should be:
If I'm not mistaken you should be using the GetItemValueDateTimeArray method instead of the GetItemValue, so it should actually be like this:
Hope that helps
请改用 GetItemValueDateTimeArray,如下面的 IBM 示例 :
Use GetItemValueDateTimeArray instead like the IBM example below: