Sean,
> I am looping through the records using the following:
>
> for i=0 to lHits-1
> oSW.SeekResult i
> oSW.NextResult
> Next
Usually the SeekResult is outside the loop, because
it freezes the startposition, so something like
lStart = 1
oSW.SeekResult lStart - 1
' Handle ALL all hits (without paging)
for i = lStart to lHits
If oSW.NextResult Then
' Get properties
...
End If
Next if
> I seem to be able to get all of the result properties I need except for
> summary ?
>
> Can you give me any clue how to get the result summary ?
What do you mean with result summary ? Is it a MetaName
and/or PropertyName ?
Herman Knoops
KnoMan b.v.
The Netherlands
_______________________________________________
Users mailing list
Users@lists.swish-e.org
http://lists.swish-e.org/listinfo/users
Received on Wed Feb 6 04:07:58 2008