I have a form that the user selects which group of data to create a report on.
He simply picks the group from a combo box and then clicks a button to print..
Now this worked yesterday (!) and has stopped working today.
The line in the code (from the event clkick on the above button) is
DoCmd.OpenReport "Group Component Parts", acPreview, , sFilter
sFilter is a where condition and has the right data in (tested on a break in the program). When you step through the line above the screen changes for a millisecond as though the report is to be produced but it hasn't.
Is there anyway I can 'step into' the report logic to see what's happening, unless of course someone know without me doing that!!
He simply picks the group from a combo box and then clicks a button to print..
Now this worked yesterday (!) and has stopped working today.
The line in the code (from the event clkick on the above button) is
DoCmd.OpenReport "Group Component Parts", acPreview, , sFilter
sFilter is a where condition and has the right data in (tested on a break in the program). When you step through the line above the screen changes for a millisecond as though the report is to be produced but it hasn't.
Is there anyway I can 'step into' the report logic to see what's happening, unless of course someone know without me doing that!!