paulS30berks
Registered User.
- Local time
- Today, 19:30
- Joined
- Jul 19, 2005
- Messages
- 116
I wondered if someone could help.
i am running a report from Access and have set up a label within the detail line to include a sequence no. to the results.
I have included the code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
xx = xx + 0
LblSeqNo.Caption = CStr(xx)
If Movement = 1 Then
Movement.Visible = True
Else
Movement.Visible = False
End If
End Sub
But receive the error: Run Time Error 424 "Object Required"
Can anyone help?
Thanks
i am running a report from Access and have set up a label within the detail line to include a sequence no. to the results.
I have included the code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
xx = xx + 0
LblSeqNo.Caption = CStr(xx)
If Movement = 1 Then
Movement.Visible = True
Else
Movement.Visible = False
End If
End Sub
But receive the error: Run Time Error 424 "Object Required"
Can anyone help?
Thanks