Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Can anybody help me to overcome this problem? ADODB is not allowing me to copy more than 255 characters into an excel cell. I must truncate the string to 255 characters before updating. otherwise it is throwing exception and fails. Please check the code below. Some times the string length is more than 255 characters. Thannks. XLSConn = New ADODB.Connection XLSConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strDestination & _ ";Extended Properties=""Excel 8.0;HDR=NO;""") Dim source As String Dim arrData Dim Counter As Integer source = "Select * from [" & sheetName & "$" & strRecRange & "]" XLSrs.Open(source, XLSConn, 1, 3) arrData = Split(strRec, Chr(9)) For Counter = LBound(arrData) To UBound(arrData) - 1 XLSrs.Fields(Counter).Value = Left(arrData(Counter), 255) Next XLSrs.Update() XLSrs.Close() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
unable to copy cell reference | Excel Discussion (Misc queries) | |||
Anyone notice excel search within cell limited to first 1024 chars | Excel Discussion (Misc queries) | |||
ADODB is unable to copy more than 255 chars in excel cell | Excel Programming | |||
Copy sheets with more than 255 chars in a cell? | Excel Worksheet Functions | |||
copy cells with more then 255 chars... | Excel Programming |