I have some LotusScript code (below), which ran perfectly on Domino 6.0, since upgrading to 6.01 it does not produce any results.
The index had been deleted and recreated, but still nothing. If I run the same code on my 6.01 workstation it works. If I run it from a Domino 6.0 server it works. If I run it when the DB is on a 6.01 Win/32 server it gives no results. A Linux server running 6.01 does give the results.
Query$=|FIELD FORM="History" AND FIELD CAMPDESC="|+Campaign+|"|
Call db.UpdateFTIndex(True) 'Update Index
Set SearchCollection=db.FTSearch (Query$,0)
If SearchCollection.Count <=0 Then
Msgbox "There are no contacts for this campaign",16,"Mail Merge"
Else
REM now open Excel and create the workbook
SearchCollection.Count always returns 0 on a Domino 6.01 server but 510 as the count on a workstation or 6.0 server
Bug in Domion 6.01 for Win/32?
Please help!
Thanks.