Hello,
does someone have some code how to search inside a dbf file inclusive Memo fields.
Thanks in advance
Otto
Hello,
does someone have some code how to search inside a dbf file inclusive Memo fields.
Thanks in advance
Otto
Otto,
you were using this one:
and now want to search in memos too, right ?
Hello Antonio,
thank you for your attention. Yes that is what I want to do. I would like to insert also the content of the memo fields in my search function.
Thanks in advance
Otto
Otto,
What file extension do you have in your memo files ?
Otto,
Please email me a DBF with a memo file of yours, thanks ![]()
local nOffset := At( "string", MemoRead( "myfile.fpt" ) )
if nOffset != 0
  We read the DBF, record by record, starting from the end of the DBF
   while RecordMemoOffset() > nOffset .and. nPosInDbf > 0
     GoPrevRecord()
   end
   if nPosInDbf > 0
     MsgInfo( "found" )
   endif
endif

44 ![]()
can't be 44FF