I am getting an error that I don't understand. The error is "No open cursor or cursor closed." It is happening when I'm switching between two tabs on the same form. Here is the line of code this is occuring on:

If bFound Then
If frmFind Is Nothing Then
Else
If frmFind.rsSite Is Nothing Then
Else
With frmFind.rsSite
If .AbsolutePosition > 0 Then
StatusBar1.Panels(2).Text = Trim(!create_userid) & ""
StatusBar1.Panels(3).Text = Trim(!create_datetime) & ""
StatusBar1.Panels(4).Text = Trim(!update_userid) & ""
StatusBar1.Panels(5).Text = Trim(!update_datetime) & ""
End If
End With
End If
End If
End If

I'd appreciate any advice!

Thanks,

AJW