AW: [NF] Tool for editing multiple files for huge search/replace operation

2018-10-30 Thread juergen
And, BTW, that's just a 3Liner in VFP: FOR i = 1 TO ADIR(aFiles, "*.txt") STRTOFILE(STRTRAN(FILETOSTR(aFiles(i,1)), "OldText", "NewText"), aFiles(i,1)) ENDFOR Or, maybe for easier disassembly: FOR i = 1 TO ADIR(aFiles, "*.txt") cFile = aFiles(i,1) ? cFile

Re: AW: [NF] Tool for editing multiple files for huge search/replace operation

2018-10-29 Thread mbsoftwaresolutions
On 2018-10-29 20:27, Ken McGinnis wrote: Yes it does. I use the "Code References" tool from FoxPro a lot. I stopped using the global search and replace because it can destroy the files. There may be a way to make it work, but I manually go through the list of files now and it works well. I

Re: AW: [NF] Tool for editing multiple files for huge search/replace operation

2018-10-29 Thread Ken McGinnis
Yes it does. I use the "Code References" tool from FoxPro a lot. I stopped using the global search and replace because it can destroy the files. There may be a way to make it work, but I manually go through the list of files now and it works well. On 10/29/2018 2:50 PM,

AW: [NF] Tool for editing multiple files for huge search/replace operation

2018-10-29 Thread juergen
Even the "Code References" tool from FoxPro lets you do a global search and replace over multiple files... -Ursprüngliche Nachricht- Von: ProFox Im Auftrag von mbsoftwaresoluti...@mbsoftwaresolutions.com Gesendet: Montag, 29. Oktober 2018 22:18 An: ProFox Betreff: [NF] Tool for