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.
Set Softseek On
Re: Set Softseek On
dbSeek() function permits lSoftSeek parameter.
obj:Seek() should permits too.
from https://harbour.github.io/doc/harbour.html#dbseek
obj:Seek() should permits too.
Code: Select all | Expand
dbSeek( <expKey>, [<lSoftSeek>], [<lFindLast>] ) → lFound
from https://harbour.github.io/doc/harbour.html#dbseek
Re: Set Softseek On
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!