Hey all, I want to use a few modules to save repetitive coding in a project:
such as:
It crashes on the Me.recordset - how do I pass the form name over to the module?Code:Sub recordposition() Select Case Me.Recordset.AbsolutePosition Case 0 cmdnext.Visible = True cmdprevious.Visible = False Case Else cmdnext.Visible = True cmdprevious.Visible = True End Select End Sub
Rich





Reply With Quote