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?