James
Cricket Web Owner
He's probably already fixed it but I would suggest implementing error checking on his procedures to find out exactly what the error is and to capture it in a nicer way.
Private Sub DoSomething()
On error goto errorlabel
.
.
.
.
Exit Sub
errorlabel
MsgBox err.description & err.number
End Sub
Private Sub DoSomething()
On error goto errorlabel
.
.
.
.
Exit Sub
errorlabel
MsgBox err.description & err.number
End Sub