I am working on my first substantial VB .NET progam and I need to convert (or copy) a CSV file to XLS from within the program. Is there an easy/straightforward way to do this?
Thanks.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ivan VasilyevPosted Jun 16, 2014, 8:23 AM
ExcelFile.Load("file.csv").Save("file.xls")
I used this VB.NET component for excel manipulations.
George HayesPosted Jan 7, 2010, 2:09 PM
Thanks.
Hirendra SisodiyaPosted Jan 5, 2010, 12:07 AM
You can try:
FileCopy csvPath, xlspath & "test.xls"
Thank you