CSV Utility
The BWCSV.DLL is an ActiveX DLL that processes CSV Data. This allows for processing of CSV files. CSV data can easily be read or written from any file.
Example Code: Private Sub Form_Load() Dim vSource As Variant ReDim vSource(3) As String Set bwcsvp = New bwcsvp vSource = bwcsvp.ReadCSV("Item1,""I'te'm2"",Item3,Item4,Item5") For i = 1 To vSource(0) MsgBox (vSource(i)) Next i ReDim vSource(1) As String vSource(0) = "Write1" vSource(1) = "Write2" MsgBox (bwcsvp.WriteCSV(2, vSource)) End Sub