Set Softseek On

Post Reply
wartiaga
Posts: 220
Joined: Wed May 25, 2016 1:04 am

Set Softseek On

Post by wartiaga »

Hi,

How I can set a softseek in a object database?

oArqBol:SetOrder("EMISSAO")
oArqBol:GoTop()

here I want to set

oArqBol:Seek(Dtos(Data1))

Thanks in advance.
hmpaquito
Posts: 1482
Joined: Thu Oct 30, 2008 2:37 pm

Re: Set Softseek On

Post by hmpaquito »

dbSeek() function permits lSoftSeek parameter.
obj:Seek() should permits too.

Code: Select all | Expand

dbSeek( <expKey>, [<lSoftSeek>], [<lFindLast>] ) → lFound

from https://harbour.github.io/doc/harbour.html#dbseek
wartiaga
Posts: 220
Joined: Wed May 25, 2016 1:04 am

Re: Set Softseek On

Post by wartiaga »

hmpaquito wrote:dbSeek() function permits lSoftSeek parameter.
obj:Seek() should permits too.

Code: Select all | Expand

dbSeek( <expKey>, [<lSoftSeek>], [<lFindLast>] ) → lFound

from https://harbour.github.io/doc/harbour.html#dbseek


Works great, thank you!
Post Reply