M Moff Dec 7, 2007 #1 Is somebody aware of a filter problem in Access 2007 forms ? My program works fine with Access 2003 but not with Access 2007...
Is somebody aware of a filter problem in Access 2007 forms ? My program works fine with Access 2003 but not with Access 2007...
M Moff Dec 7, 2007 #2 This is the code that is working in Access 2003 and not in Access 2007. Can You helm me please ? Private Sub Form_Open(Cancel As Integer) Me.FilterOn = True Me.Filter = "[actor_name] = '" & globalActorName & "'" The result is supposed to show the form with only one record.
This is the code that is working in Access 2003 and not in Access 2007. Can You helm me please ? Private Sub Form_Open(Cancel As Integer) Me.FilterOn = True Me.Filter = "[actor_name] = '" & globalActorName & "'" The result is supposed to show the form with only one record.
M Moff Dec 7, 2007 #3 This code resolved the problem : DoCmd.ApplyFilter , "[actor_name] = '" & globalActorName & "'"