i need to convert a tableview into a table:
on the icontacts app (given on the site) reads from the phone's contact list
and seems to write to the tableview.
the istringutilies has a csv rountine that writes to a csv file.
how do i get the data from the tableview into the table so that i can write it out to
the csv file?
this is the routine to write to the csv:
su.SaveCSV(File.DirDocuments, "contact.csv", ",", TableView1)
If File.Exists(File.DirDocuments, "contact.csv") = False Then
Msgbox("Ok, it is here","")
End If
it fails when it is executed.
the TableView1 is meant to be a Table.
on the icontacts app (given on the site) reads from the phone's contact list
and seems to write to the tableview.
the istringutilies has a csv rountine that writes to a csv file.
how do i get the data from the tableview into the table so that i can write it out to
the csv file?
this is the routine to write to the csv:
su.SaveCSV(File.DirDocuments, "contact.csv", ",", TableView1)
If File.Exists(File.DirDocuments, "contact.csv") = False Then
Msgbox("Ok, it is here","")
End If
it fails when it is executed.
the TableView1 is meant to be a Table.