I have a utility that needs to read an Excel data file. I have the system working pretty well except that it will not read long notes. Any note that is longer than 255 characters gets cut-off.
I am using VB6 and using an oledb connection to Excel:
cnnExcel.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & sDataSource & ";" & _
"Extended Properties=""Excel 8.0;IMEX=1;"""
Is this just a limitation with reading Excel files?
Thanks.
Ted
I am using VB6 and using an oledb connection to Excel:
cnnExcel.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & sDataSource & ";" & _
"Extended Properties=""Excel 8.0;IMEX=1;"""
Is this just a limitation with reading Excel files?
Thanks.
Ted