> >> I've been through every Valentina 2 document I have, Reference,
> >> Database Kernel, SQL and I cannot find any mention of an
> error code
> >> #460037.
Hi Chuck,
Have you tried Bart's suggestion of placing your code in a try/catch
block and msgbox'ing the error?
Try
{You query code here}
catch err as VException
MsgBox err.Message
End
-John