 |
Goran Level: Moderator
 Registered: 16-05-2002 Posts: 1681
|
Re: File conversion trouble
1) changing the extension will not do much. But if your task is to only change the extension the simple name function will do the job
| Name "c:\test.dat" As "c:\test.csv" |
2) Yes you can. Open the file using Open statement, store csv in an array. This way you can easily manupulate with rows/columns. For example, if you want to add column on 3rd position in csv file, when writting data to csv file you will put 1st two columns, then add value from this new column, then continue inserting the rest of the columns from array, and all this for every row in array.
3) Search in VBA section about hot to open excel file in VB.
____________________________
If you find the answer helpful, please mark this topic as solved.
|
|
10-07-2005 at 04:39 PM |
|
|
|
|
 |
 |