vegetablejello
Programmer
I am looking to do a find/replace in a tab delimited text document before i import the file into a dbf structure. The problem is the tab delimited text document has double quotes in it and when i use this command "APPEND FROM &myfile delimited WITH TAB", the double quotes is throwing it all off. The only way I found to fix is to manually open up the text document and find/replace there. I never tried to access notepad and do a find/replace before so i may be starting this problem the wrong way. So far I can only open notepad, but can not figure out how to do anything else with it.
LOCAL oShell AS WScript.Shell
oShell = CREATEOBJECT("WScript.Shell")
oShell.Run("notepad &myfile", 0)
LOCAL oShell AS WScript.Shell
oShell = CREATEOBJECT("WScript.Shell")
oShell.Run("notepad &myfile", 0)