VB.NET form to csv

Burrug

New member
Joined
Jun 14, 2006
Messages
2
Programming Experience
1-3
Hello,
I was wondering if there is any way to save data, filled in in a form in VB.NET or eVB, in a CSV-file?

This is what I want to do;
Our employees can fill in their reports of visits to customers on their Pocket-PC, and the data of the VB-form is saved in a CSV file.
When the employees are in range of the company-network, these files will be synchronised by means of an offline folder on the fileserver.
The CSV-files wil be handled by the intranet's PHP-script.

Sorry for my bad english, i'm from Holland :)
Thanks in advance
 
Last edited:
I have now something like this;

VB.NET:
If Not Directory.Exists("/CSV") Then Directory.CreateDirectory("/CSV")
System.IO.File.Create("/CSV/csvtje.csv")
File.OpenWrite("Textbox1")

 
Back
Top