I have a form and a combobox that filters the form. This works for the date field. Now I am adding exact same code to the change event of 2 more combo boxes and they do not work?
thread702-1384539 addresses similar issue.
BEGIN CODE
Private Sub cboStatus_Change()
Me.Filter = "IDOCStatus = '" & Me.cboStatus & "'"
Me.FilterOn = True
End Sub
END CODE
What is the problem? Is it corrupted? If so how do I de-compile my code?
thread702-1384539 addresses similar issue.
BEGIN CODE
Private Sub cboStatus_Change()
Me.Filter = "IDOCStatus = '" & Me.cboStatus & "'"
Me.FilterOn = True
End Sub
END CODE
What is the problem? Is it corrupted? If so how do I de-compile my code?