OK, one problem here is that the "ME" in
DoCmd.OpenReport "Réservation", , , , "Liste38 =" & Me!Liste204
refers to the current object, which in this case is the REPORT, not the form you just made invisible.
DoCmd.OpenReport "Réservation", , , , "Liste38 =" & forms!{your-form-name}!Liste204
I'm just a little confused though, why do you have A LISTBOX on a report?
Is it just that you want the contents of the listbox from the form DISPLAYED on the report like a label?
That is simple to do with a text box that points back to the listbox:
=Forms!{your-form-name}!Liste204
and then you don't need anything after the
DoCmd.OpenReport "Réservation"
Jim
There are two ways to argue with a woman - neither one works.
Another free Access forum:
More Access stuff at