Re: Split out reports in a FE into its own DB?
From: Marshall Barton (marshbarton_at_wowway.com)
Date: 02/16/05
- Next message: Carl Rapson: "Re: How can I use a different picture with each report I print?"
- Previous message: Rick B: "Re: How can I allow hyperlinks to be 'clickable' in a report?"
- In reply to: Rick Roberts: "Re: Split out reports in a FE into its own DB?"
- Next in thread: Rick Roberts: "Re: Split out reports in a FE into its own DB?"
- Reply: Rick Roberts: "Re: Split out reports in a FE into its own DB?"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 16 Feb 2005 09:01:09 -0600
As I said before, in the situation I was dealing with, I
didn't think it was worth it. However, your situation
and/or your criteria of what it's worth is probably
different then mine, so there's no definitive answer.
I suggest that you pick your most difficult report (in terms
of its need for form controls, global variables and tricky
record source query and see what it takes to move it to a
separate mdb. Once you get a feel for that, you'll get a
better idea if you want to proceed with all your other
reports or not.
-- Marsh MVP [MS Access] Rick Roberts wrote: >Thanks for your response and I appreciate your feedback. I have spent some >time looking into this and I am still split on separating it out or not. >Part of me feels like it’s a good idea, part of me doesn't. > >Given your expertise what would you do? > > >> I haven't tried this kind of thing in a long time, because I >> didn't think it was worth it. However, I did get that >> arrangement to work by referencing the reports mdb as a >> library in the main front end mdb. Then you can create a >> public function in the reports mdb that can open the >> reports. The function wouldn't have to do anything beyond >> passing arguments to the OpenReport method and some error >> handling. The main report's code would only need a minor >> change. E.g. instead of >> DoCmd.OpenReport . . . >> you would use: >> MyOpenReport . . . >> >> Some things the reports mdb must do is link to all the >> tables the same way the main mdb does and contain all the >> queries needed by the reports. >> >> One big drawback is that the reports will not be able to >> refer back to values in the main mdb. So if you do that >> sort of thing, you will have to do some rework to get the >> values to the reports. >> >> It would have been nice if Access provided an Open method >> for a form/report Document or AccessObject, but until it >> does, AFAIK, OpenReport is the only way to open a >> form/report using arguments such as View and WhereCondition.
- Next message: Carl Rapson: "Re: How can I use a different picture with each report I print?"
- Previous message: Rick B: "Re: How can I allow hyperlinks to be 'clickable' in a report?"
- In reply to: Rick Roberts: "Re: Split out reports in a FE into its own DB?"
- Next in thread: Rick Roberts: "Re: Split out reports in a FE into its own DB?"
- Reply: Rick Roberts: "Re: Split out reports in a FE into its own DB?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|