iOS Question icontacts write to local cvs file

John Woodsmall

Active Member
Licensed User
Longtime User
is there a simple way to write the contacts list from the phone to
a local /file "cvs' file?
so that it can be sent by http to a server to capture it?
 

John Woodsmall

Active Member
Licensed User
Longtime User
ok, thanks i tried:
I added the istringutils lib)

su.SaveCSV(File.DirDocuments, "contact.csv", ",", TableView1)
If File.Exists(File.DirDocuments, "contact.csv") = False Then
Msgbox("Ok, it is here","")
End If

this is from "Icontacts"
iContacts + ContactsUtils - Read and write to the contacts store

it fails.
 
Upvote 0

John Woodsmall

Active Member
Licensed User
Longtime User
the error in the above: savecsv(file.dirdocuments,"contact.csv",",", tableview1)
is that tableview1 is meant to be a "table", but i do not know the name of the table
that is being used.

so how do i get the name of the table?
 
Upvote 0
Top