O OhWhite Dec 7, 2005 #1 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
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
L Lucky Dec 7, 2005 #2 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
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
C Cor Ligthert [MVP] Dec 7, 2005 #4 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
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