The xEdit find function never worked for me. This changed code seems to work to find records that match the text string you are looking for. In "\Edit Scripts\Find records.pas" replace the code on line 216: if ElementExists(e, slHasElements[i]) then begin With this: if Pos(lowercase(slHasElements[i]), lowercase(Name(e))) > 0 then begin
There isn't a way that I know of to do it directly. That being said, you can try limiting what is displayed by using filters. Type in the field you're working with and check in the siblings/children flag (if needed) - usually that filters out a lot of stuff making it possible to fit everything in one screen.
If not - well, I guess scripting is the best way to go.
5 comments
if ElementExists(e, slHasElements[i]) then begin
With this: if Pos(lowercase(slHasElements[i]), lowercase(Name(e))) > 0 then begin
If not - well, I guess scripting is the best way to go.