keepingbusy
Programmer
Hi
How can I remove the space at the front of the numbers shown below?
Code:
mdateplay=DATE()
COPY TO completed.txt FIELDS listingid, daterecevd ;
FOR mdateplay=dateposted ;
TYPE DELIMITED WITH " " WITH CHARACTER BLANK
copy file completed.txt to completed.tab
dele file completed.txt
12345678 15/06/2007
23456789 15/06/2007
45678901 16/06/2007
Where as I require:
12345678 15/06/2007
23456789 15/06/2007
45678901 16/06/2007
I know the above produces the data required without "" wrap arounds. How could I also create a CSV file using the same fields above?
VFP - Version 6
Thank you
Lee