Hey Gang!
I am testing a Notes Web Form that works fine in development, not in test. Here is some background info:
(1)Test Server is version 7, the Dev Server is 8.5.2
(2)An agent that is supposed to run on form load to fill a comboBox list on the App no longer works.
How does one make the list work on 7? Is there a quick fix to this? We can’t do an upgrade as of now. I am looking to see if such behaviour has been reported.
Excerpt of Agent:
+++++++++++++++++++++++++++++>>
'Open internal database for lookup
Set webIntDb = New NotesDatabase(webIntSvr, folder + slash + currentDb.FileName)
If Not webIntDb.IsOpen() Then
If ( Not ( webIntDb.Open( webIntSvr, folder
- slash + currentDb.FileName) ) ) Then
currentDoc.debug = “Error opening internal database”
Exit Sub
End If
End If
'Get Lookup view
Set lookupView = currentDB.GetView(“LookupKey”)
Set lookupDoc = lookupView.GetDocumentByKey(“MonthAndDay”)
currentDoc.rptPeriodList = lookupDoc.values
Exit Sub
+++++++++++++++++++++++++++++>>
Any input is appreciated…
Köll