Hi Guys,
I just have a query about the code below:
This code works in 2000 but not in 2003. I have created a Form that has two parts. The first part contains a summary of all the records found in the database. The second half of the form has the FULL REMARKS portion of that specified record. If I click on any of the summarized records in the first half, the second half will show the details.
Why is this no longer working in 2003? Can anyone help?
Thank you and warm regards to all....
I just have a query about the code below:
Code:
Private Sub Form_Current()
On Error Resume Next
Application.Echo False
Forms!QueryBox!QueryBoxDiscrepancyRemarksSubForm.Requery
Application.Echo True
End Sub
Why is this no longer working in 2003? Can anyone help?
Thank you and warm regards to all....
Comment