Catch the error handle and try again.(That's the only way I've found):
Sub SubName
On Error GoTo errHandler
Restart:
'*** Put your code here
Exit Sub
errHandler:
'*** Retry 5 times with that error (I'm using dBase III)
If Err.Number = vbObjectError - 245755 Then...
I'm trying, with a VB, to access a dBase III table with ODBC dBase Driver, but it seems to be not accepted with a NUMERIC (with 2 precision) field in it.
see:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odbc/htm/odbcjetdbase_data_types.asp
Changing to an other ODBC...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.