Everton
08-18-2000, 09:02 AM
Im having difficulty in using check boxes in a custom dialog box, to set up the parameters in a query. I then want to produce a report from this query. Can this be done, and if so does anybody have any advice?
|
View Full Version : Producing a report via a custom dialog box Everton 08-18-2000, 09:02 AM Im having difficulty in using check boxes in a custom dialog box, to set up the parameters in a query. I then want to produce a report from this query. Can this be done, and if so does anybody have any advice? Pat Hartman 08-20-2000, 10:43 AM Check boxes have three possible values True = -1 False = 0 Null = null Try setting the default value to 0 to eliminate the null possibility. Use the query as the recordsource for the report and run the report not the query from your dialog box. |