I have a continuous form that works fine and shows all the records it should but I would also like to have this form open when a command button is clicked on a Record so when it opens, only that record will show.
normally this is straight forward how ever when the form opens all records are displayed (300 odd) rather then the one record the Link Criteria should show.
I suspect this code is the issue which is the Form On Load Event.
Is it possible to ignore this code when the form is opened by the command button mentioned above?
normally this is straight forward how ever when the form opens all records are displayed (300 odd) rather then the one record the Link Criteria should show.
I suspect this code is the issue which is the Form On Load Event.
Is it possible to ignore this code when the form is opened by the command button mentioned above?

Code:
Private Sub Form_Load()
Me.Filter = "LoanCurrentBalance>0"
Me.FilterOn = True
Me.OrderBy = "EDName, FullName, LoanID"
Me.OrderByOn = True
End Sub