I'm converting a VBA program to VB.net. The program needs to import a csv file to my sql database. In access I was using the following command:
DoCmd.TransferText acImportDelim, "My_import_spec", _
"tbl_scan_data", "C:\MyDataFile.csv"
Q: How do I acomplish this in VB.net. Is there a way to use Access's language within VB.net?
Note: I have installed the MS office tools that comes with VB.net.
TIA
Jeff
DoCmd.TransferText acImportDelim, "My_import_spec", _
"tbl_scan_data", "C:\MyDataFile.csv"
Q: How do I acomplish this in VB.net. Is there a way to use Access's language within VB.net?
Note: I have installed the MS office tools that comes with VB.net.
TIA
Jeff