-----Original Message-----
Hi,
You would have to manually break the csv into several files.
Here is some code that might help. It creates a csv and reads it into
dataset and displays it in a datagrid.
If Not Directory.Exists("C:\CSV Test") Then
Directory.CreateDirectory("C:\CSV Test")
'
' Create a csv file
'
Dim sw As New StreamWriter("C:\CSV Test\Test.csv", False)
sw.WriteLine("Column1,Column2,Column3")
For x As Integer = 0 To 20
sw.WriteLine("{0},{0},{0}", x)
Next
sw.Close()
'
' Open an oledb connection and show it in a datagrid
'
Dim strConn As String