Herman Knoops wrote:
> 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
>
Thanks.
>> 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 ?
>
I just worked it out..
I was looking for "swishdescription" !
Thanks.
Sean
_______________________________________________
Users mailing list
Users@lists.swish-e.org
http://lists.swish-e.org/listinfo/users
Received on Wed Feb 6 06:20:06 2008