Hi Martin,
You can catch the error in DataGrid's Error event and hanlde it by setting
Reponse to 0. For example:
Private Sub DataGrid1_Error(ByVal DataError As Integer, Response As Integer)
If DataError = 7011 Then
Response = 0
End If
End Sub
Luke
(This posting is provided "AS IS" with no warranties, and confers no
rights. You assume all risk for your use. Copy Right, 2001 Microsoft
Corporation. All rights reserved.)