Re: Extracting Data from Comet


[ Follow Ups ] [ Post Followup ] [ Signature.net Forum ]

Posted by Jim Guerber (66.8.131.115) on November 17, 2004 at 13:01:14:

In Reply to: Extracting Data from Comet posted by Mark on November 17, 2004 at 08:04:08:

The simplest way is to make a program or modify one of your programs to create a text file with the extension of ".csv". write records to the file with commas separatingf fields such as this:


entry$ = 'Test.csv'
erase entry$,dir='isc',excp=etok
etok: create entry$,dir='isc'
close(10) & open(10)entry$

loop through something writing records such as this:

print(10) aname$;',';fname$;',';lname$;',';iname$;',';amt$

When you are finished writing the fil, you can even automatically launch excel to view the file by launching it like this:

entry$ = path('isc') + entry$
print (launch=entry$)



Follow Ups:



Post a Followup

Name:
E-Mail:

Subject:

What is the name of the main Signature System's Product?

Comments:

Optional Link URL:
Link Title:
Optional Image URL:

You may attach up to 5 files to your followup (see below):






[ Follow Ups ] [ Post Followup ] [ Signature.net Forum ]