mohammadagul
PrinceAtif
- Local time
- Tomorrow, 01:08
- Joined
- Mar 14, 2004
- Messages
- 298
Hi
I am using the following Code on the OnCurrent Event of my form. The Problem is , in Access XP or 2000 it works Great but in Access 2003 it starts flickering, unless we bring the cursor to any field of the subform
Private Sub Form_Current()
On Error GoTo Err_Form_Current
If Me.RecordsetClone.RecordCount > 1 Then
Me.ScrollBars = 3
Else
Me.ScrollBars = 0
End If
Exit_Form_Current:
Exit Sub
Err_Form_Current:
MsgBox err.Description
Resume Exit_Form_Current
End Sub
I am using the following Code on the OnCurrent Event of my form. The Problem is , in Access XP or 2000 it works Great but in Access 2003 it starts flickering, unless we bring the cursor to any field of the subform
Private Sub Form_Current()
On Error GoTo Err_Form_Current
If Me.RecordsetClone.RecordCount > 1 Then
Me.ScrollBars = 3
Else
Me.ScrollBars = 0
End If
Exit_Form_Current:
Exit Sub
Err_Form_Current:
MsgBox err.Description
Resume Exit_Form_Current
End Sub