This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Multiple Value Date Field - How to Insert Values? ~Andy Nimboositerjip 3.Oct.03 11:01 AM a Web browser Applications Development All ReleasesAll Platforms
Otherwise uses following code
Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Dim doc As notesdocument
Dim datelist() As Variant
Dim Newdate As Variant
Set uidoc = workspace.CurrentDocument
Set doc=Uidoc.document
Newdate=Cdat("12-12-97")
Count=0
Forall i In Doc.x
Redim Preserve datelist(Count)
datelist(Count)=i
Count=Count+1
End Forall
If datelist(0)="" Then Exit Sub
Redim Preserve datelist(Count)
datelist(Count)=Newdate
Doc.x=datelist
End Sub