Link Report

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

Guest

Is there a way to link a report? I want to put a report on the network that
is updated daily. I have a .snp file that I copy each day, but would like
for it to update automatically.
Thanks!
 
Sam:

There's a couple of ways that you can have a report on your network be
dynamically updated:

1.) If all your user's have Office 2000 or greater installed (with the
Office Web Components) you can create a Data Access Page in Access and then
using a text editor change the absolute paths with the resulting htm page
created to relative (network) paths to the database and this page can then
be viewed using a web browser.

2.) If you have a server where you can install a web server (e.g. IIS, Cold
Fusion etc.) then you can use those systems to link to your db and
dynamically query your database and return a web based report even if the
user doesn't have Office web components installed.

3.) You can use the Windows Scripting Host and the Windows Scheduler to set
a time each data to run a script that launches Access, outputs the SNP file
and then moves it to the network location you desire. If you want a very
simplified explanation of how to schedule a report's production, stop by our
web and look in the Code and Design Tips area under reports and you'll find
an example of using WSH to automate printing of a report, which you could
modify to create the SNP and then add the file handline routines provided by
the File System Object available for the Scripting host to move the file
(you can see the fso object in the general tips section under automating
compacting of a database.) If you need more information on these objects
then go to http://msdn.microsoft.com and look up the File System Object in
the MSDN library.

HTH
 
Just use our report server product to produce "live" reports that return to
the user as
PDF files. From the last post of ways which will work here are my comments:

1. Data access pages are not the best technology.
2. Direct automation of access from asp or asp.net pages leads to server
crashes.
3. Producing files and ftping or copying them to your website is fine but
that's really
a batch operation and not live, we make a
batch reporting product to help with that approach

Thousands of customers and have been selling our product for years.

Once you go web you also might want to consider moving back-end data to SQL
Server
and just using Access as a reporting tool.

HTH,
Mark Andrews
RPT Software
http://www.rptsoftware.com

PS: Steve also has a batch reporting product so if you want to go route #3
take a look at his site
as well.
 
Back
Top