how to generate csv files

  • Thread starter Thread starter Yoshitha
  • Start date Start date
Y

Yoshitha

Hi

in my form (windows from) 've several text boxes,lable controls and drop
down boxes and a button.
when i click on this button then the entered in all the textboxes and data
presented on label and dropdown box es must be saved into .csv files .

can anybody tell me how to do this one.

its very urgent
Thanx in advance
Yoshitha
 
Simply keep in mind the column delimiter is ";". Just create the file
as any other raw text file, making sure you jump the lines correctly
and that you add a ";" character between every two "columns".

Then save it with the csv extension and you're done :-)
 
Samuel,
Simply keep in mind the column delimiter is ";". Just create the file
as any other raw text file, making sure you jump the lines correctly
and that you add a ";" character between every two "columns".

Just as addition.

The delimiter in CSV is culture depended. You are giving the delimiter for
probably most cultures where the "," is the decimal point.

Cor
 
Thanks for the head up, Cor. You're absolutely right, I'm in Spain and
we use decimals "the other way around".

1,000.01 US = 1.000,01 SP (EU?)

Did not really know the delimiter varies.
 
Back
Top