Can a comma delimited text file be exported to a dbf file using IExportOperation.ExportTable Method? If so could someone point me to some sample code for the export?
2 write data into the table with ICursor, the operation is exactly the same as writing into featureclass if you are familiar with that operation except you do not need to write geometry for table
E.g. the following code will insert rows (from your csv file) into table
Dim cur as ICursor = tbl.Insert(true)
Dim buff as IRowBuffer
' loop your csv rows data
buff = tbl.CreateRowBuffer()
buff.Value(index) = ...
cur.InsertRow(buff)
cur.Flush()
An alternate approach is to call the existing Table to Table conversion tool using the geo-processor. If you have never called existing tools before then have a look at this page.