MS Access parameterized reports

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, All
I need help:
I have VS .NET 2003 version 1.1 (C#) and MS Access
What will be the best way to create parameterized reports?
Please, help
I don't know where to start, any linkss to this topic will be appreciated
 
elena said:
Hi, All
I need help:
I have VS .NET 2003 version 1.1 (C#) and MS Access
What will be the best way to create parameterized reports?
Please, help
I don't know where to start, any linkss to this topic will be appreciated

Hi

Are you going to use the bundled Crystal Reports 9 to report off the
Access database or do you plan to open the Access report from within
your C# application?

The first method is easier but requires some coding and is reliable.

The second method requires advanced coding techniques ie. interfacing
with Access... probably COM interop to access the Access application
involved.

Cheers,
ND
 
Hi,
I need to open and print reports within C#, back end Access db and all
reports created in Access.
Please, any links to this topic...
Thank you,
 
My advise is this:

1. Abandon the creation of reports inside the program "Access". Treat
Access as a simple datastore holding data.

2. If you have some funding, perhaps going to Active Reports is a solution.
You can get the code and try it out....... without buying it. You'll just
get a "evaluation" message on generated reports.


3. If you don't want to shell out the money for AR, then check this:
http://www.asp.net/ReportsStarterKit/
out.
or here
http://www.asp.net/DownloadWizard.aspx?WizardTarget=ReportsDownloadCSVS&WizardGroup=StarterKits

(they seemed to have removed the web pages talking about it, though you can
still get the source code)

...

4. If youre using access because its free and what you already have, then
take a look at:

MSDE (sql server 2000 "lite")
http://sholliday.spaces.live.com/?_...gview&_c=blogpart&partqs=amonth=12&ayear=2005

or SqlExpress ( the same "lite" thing, 2005 style)
 
Back
Top