keepingbusy
Programmer
If this is not the right forum, please let me know.
I created a table using a txt file with the VFP9 import wizard. The data format was delimited with a field delimiter ,
When you browse the table its perfect with all the columns from the txt file sorted in fields within the table.
I then used that table I created from the wizard to import the same txt file as shown below.
However, when you use the following command to automate the process in a prg, some of the data from the columns in the txt file end up in the wrong fields in the table.
Code:
APPEND FROM myfile.txt DELIMITED WITH ,
My question is then... Why does this happen when the wizard works and the command line doesn't?
Thank you
Lee