Does anybody know of code to write the contents of VB.NET text boxes to
a CSV File but without the quotes?
Kind Regards,
Boulent
Lucky - 07 Dec 2005 09:06 GMT
hi OhWh,
can you post a piece of Text that u want to write in the CSV file?
so that one can get idea what r u trying to write in the CSV file
OhWhite@hotmail.com - 07 Dec 2005 09:32 GMT
Numeric values, this is data from a calculator.
Cor Ligthert [MVP] - 07 Dec 2005 16:14 GMT
Normally it write no quotes if you do this in its most simple form (Central
& West European Culture)
dim string as myfile = textbox1.text & ";" & textbox2.text
I hope this helps,
Cor