Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Daniel said:Possibly try this:
The following steps show how to preview a report in Microsoft Access 2000:
1. Open Microsoft Access and create a new form using 'Design View'.
2. Under the 'Insert' menu, click 'ActiveX Control…'. The 'Insert ActiveX Control' box appears.
3. Select 'Crystal Report Control' and click 'OK'. The OCX control appears on the form.
4. Right-click the OCX control and select 'Properties', then Click the 'Other' tab.
5. Change the 'Name' property to 'CrystalReport1' (without quotes) and set the 'ReportFileName' property to the path of a report file (such as C:\Program Files\Seagate Software\Crystal Reports\Samples\En\Reports\Feature Examples\Formulas.rpt). You can use the ellipsis (…button to browse to a report.
6. Using the Access Toolbox, place a command button on the form. Click 'Cancel' when the 'Command Button Wizard' appears.
7. Right-click the command button and select 'Properties'. Click the 'Format' tab and set the 'Caption' property to 'Preview Report' (without quotes).
8. Click the 'Event' tab, and set the 'On Click' event to [Event Procedure] from the drop-down combo box.
9. Next to the drop-down arrow, click the ellipsis (…button. The Visual Basic editor appears.
10. In the Command1_Click() event, type the following line of code:
CrystalReport1.Action = 1
This line previews the report when the button is clicked.
11. Back in the form's design view, save and then view the form. Click the command button to preview the report.
HTH
Daniel