I have two crystal reports that are showing at the same time in a web page. I would like to be able to show them side by side in a table format instead of on top of each other. How does htlm reference the crviewer as an object? I tried placing each object in each column of the table but it keeps commming up blank.
Here is the code I am running:
<!-- INVESTIGATION REPORT -->
<html>
<head>
<TITLE>Investigation Report</TITLE>
</head>
<BODY BGCOLOR=C6C6C6 LANGUAGE=VBScript topmargin=0 leftmargin=0>
<!--REVIEW PREVIEW SETTINGS FOR ACTX -->
'<table width = 100% ><tr><td width = 50%>
<OBJECT ID="CRViewer"
CLASSID="CLSID:C4847596-972C-11D0-9567-00A0C9273C2A"
WIDTH=100% HEIGHT=50%
CODEBASE="/viewer/activeXViewer/activexviewer.cab#Version=8,5,0,217">
<PARAM NAME="EnableDrillDown" VALUE=0>
<PARAM NAME="EnableExportButton" VALUE=1>
<PARAM NAME="DisplayGroupTree" VALUE=0>
<PARAM NAME="EnableGroupTree" VALUE=0>
<PARAM NAME="EnableAnimationControl" VALUE=1>
<PARAM NAME="EnablePrintButton" VALUE=1>
<PARAM NAME="EnableRefreshButton" VALUE=1>
<PARAM NAME="EnableSearchControl" VALUE=1>
<PARAM NAME="EnableZoomControl" VALUE=1>
<PARAM NAME="EnableSearchExpertButton" VALUE=0>
<PARAM NAME="EnableSelectExpertButton" VALUE=0>
</OBJECT>
</td>
<td>
<!--REVIEW PREVIEW SETTINGS FOR ACTX -->
<OBJECT ID="CRViewer1"
CLASSID="CLSID:C4847596-972C-11D0-9567-00A0C9273C2A"
WIDTH=100% HEIGHT=99%
CODEBASE="/viewer/activeXViewer/activexviewer.cab#Version=8,5,0,217">
<PARAM NAME="EnableDrillDown" VALUE=0>
<PARAM NAME="EnableExportButton" VALUE=1>
<PARAM NAME="DisplayGroupTree" VALUE=0>
<PARAM NAME="EnableGroupTree" VALUE=0>
<PARAM NAME="EnableAnimationControl" VALUE=1>
<PARAM NAME="EnablePrintButton" VALUE=1>
<PARAM NAME="EnableRefreshButton" VALUE=1>
<PARAM NAME="EnableSearchControl" VALUE=1>
<PARAM NAME="EnableZoomControl" VALUE=1>
<PARAM NAME="EnableSearchExpertButton" VALUE=0>
<PARAM NAME="EnableSelectExpertButton" VALUE=0>
</OBJECT>
</td></tr></table>
<!-- #include file=RetrieveIStore.csp -->
<%
'WRITTEN BY TIM MCGINNIS 11/15/02
'REPORTNAME IS THE NAME OF THE REPORT
'FUNCTION GetReportID Gets the Crystal Enterprise ID that represents this report
' and returns a Logon token.
'LOGONTOKEN IS TOKEN THAT CONTAINS THE LOGON INFO NEEDED TO LOGON TO CRYSTAL ENTERPRISE
'RECORDID Is the value for the Crystal Report Parameter
' You Could specify more than 1 parameter
'Each Parameter has the syntax param# = <value>
'Example param0=1¶m1=Paul
' NOTES: When adding another report, you are responsible to
'This code is written only for the actx control
' 1) Set Title of report and review PARAM Settings for previewer
' 2) Build the parameter string and set in both places
' 3) Optionally, you may want to select a different viewer, or use the user default settings by not setting it at all'Use the active x Control viewer
'actx ActiveX
'nav_plugin Netscape Plug-in
'java Java using browser JVM
'java_plugin Java using Java Plug-in
'html_page Standard HTML
'html_frame DHTML with Frames
' 4) Supply the Subreport names and SQL Logon string
IF GetReportID("INV", RPTID, LOGONTOKEN) then
Dim URL
'URL without any parameters except connection
URL = "/JCPRW/viewrpt.cwr?id=" & RPTID & "&apstoken=" & LOGONTOKEN
'---------------Add param's here--------------------------------------------------------------------
'Add param's here
response.write "<INPUT id=""param0"" type=""hidden"" value=""" & Request.querystring("param0" & """>"
'---------------Leave this line alone. Set params in VBScript--------------------------------------
response.write "<INPUT id=""txtURL"" type=""hidden"" value=""" & URL & """>"
else
response.write "<B> Could not find a report by that name. </B>"
end if
IF GetReportID("PROP", RPTID, LOGONTOKEN) then
Dim URL1
'URL without any parameters except connection
URL1 = "/JCPRW/viewrpt.cwr?id=" & RPTID & "&apstoken=" & LOGONTOKEN
'---------------Add param's here--------------------------------------------------------------------
'Add param's here
response.write "<INPUT id=""param0"" type=""hidden"" value=""" & Request.querystring("param0" & """>"
'---------------Leave this line alone. Set params in VBScript--------------------------------------
response.write "<INPUT id=""txtURL1"" type=""hidden"" value=""" & URL1 & """>"
else
response.write "<B> Could not find a report by that name. </B>"
end if
%>
<SCRIPT LANGUAGE="VBScript">
<!--
Sub window_onLoad()
Page_Initialize()
End Sub
Sub Page_Initialize
On Error Resume Next
Dim webBroker
Dim WebBroker1
Dim URL
Dim URL1
Set webBroker = CreateObject("WebReportBroker.WebReportBroker"
Set webBroker1 = CreateObject("WebReportBroker.WebReportBroker"
URL = txtURL.value
URL1 = txtURL1.value
if err.number <> 0 then
window.alert "Unable to load Report Viewer to create it's resource objects."
else
Dim webSource0
Dim webSource1
Dim SQL_LOGONNAME
Dim SQL_PASSWORD
SQL_LOGONNAME = "JC_CRUser"
SQL_PASSWORD = "52cr8737"
Set webSource0 = CreateObject("WebReportSource.WebReportSource"
webSource0.ReportSource = webBroker
webSource0.URL = URL
webSource0.PromptOnRefresh = False
'----------Add Parameters------------------------------------------------------
'Set Parameters
webSource0.AddParameter "promptex0", param0.value
'-----------Add login for main report-------------------------------------------
'Add User and Password for Main Report
webSource0.AddParameter "USER0", SQL_LOGONNAME
webSource0.AddParameter "password0", SQL_PASSWORD
'------------Add login for all sub reports with name----------------------------
'Add User and Password for Sub Report1
webSource0.AddParameter "user0@cr_Offense_subbox5" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Offense_subbox5" , SQL_PASSWORD
'Add User and Password for Sub Report2
webSource0.AddParameter "user0@cr_weapon_subbox18" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_weapon_subbox18" , SQL_PASSWORD
'Add User and Password for Sub Report3
webSource0.AddParameter "user0@cr_vechile_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_vechile_sub" , SQL_PASSWORD
'Add User and Password for Sub Report4
webSource0.AddParameter "user0@cr_teletype_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_teletype_sub" , SQL_PASSWORD
'Add User and Password for Sub Report5
webSource0.AddParameter "user0@cr_evidence_bag_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_evidence_bag_sub" , SQL_PASSWORD
'Add User and Password for Sub Report6
webSource0.AddParameter "user0@cr_Xref_subbox54" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Xref_subbox54" , SQL_PASSWORD
'Add User and Password for Sub Report7
webSource0.AddParameter "user0@cr_chemical_lab_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_chemical_lab_sub" , SQL_PASSWORD
'Add User and Password for Sub Report8
webSource0.AddParameter "user0@cr_ballistic_lab_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_ballistic_lab_sub" , SQL_PASSWORD
'Add User and Password for Sub Report9
webSource0.AddParameter "user0@cr_summons_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_summons_sub" , SQL_PASSWORD
'Add User and Password for Sub Report10
webSource0.AddParameter "user0@cr_Arrested_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Arrested_sub" , SQL_PASSWORD
'Add User and Password for Sub Report11
webSource0.AddParameter "user0@cr_offense_subb" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_offense_subb" , SQL_PASSWORD
'Add User and Password for Sub Report12
webSource0.AddParameter "user0@cr_offense_subbox5a" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_offense_subbox5a" , SQL_PASSWORD
'Add User and Password for Sub Report13
webSource0.AddParameter "user0@cr_Crime_Incident" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Crime_Incident" , SQL_PASSWORD
'Add User and Password for Sub Report14
webSource0.AddParameter "user0@cr_weapon_subbox18a" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_weapon_subbox18a" , SQL_PASSWORD
'Add User and Password for Sub Report15
webSource0.AddParameter "user0@cr_vechile_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_vechile_suba" , SQL_PASSWORD
'Add User and Password for Sub Report16
webSource0.AddParameter "user0@cr_teletype_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_teletype_suba" , SQL_PASSWORD
'Add User and Password for Sub Report17
webSource0.AddParameter "user0@cr_evidence_bag_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_evidence_bag_suba" , SQL_PASSWORD
'Add User and Password for Sub Report18
webSource0.AddParameter "user0@cr_Xref_subbox54a" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Xref_subbox54a" , SQL_PASSWORD
'Add User and Password for Sub Report19
webSource0.AddParameter "user0@cr_chemical_lab_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_chemical_lab_suba" , SQL_PASSWORD
'Add User and Password for Sub Report20
webSource0.AddParameter "user0@cr_ballistic_lab_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_ballistic_lab_suba" , SQL_PASSWORD
'Add User and Password for Sub Report21
webSource0.AddParameter "user0@cr_summons_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_summons_suba" , SQL_PASSWORD
'Add User and Password for Sub Report22
webSource0.AddParameter "user0@cr_Arrested_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Arrested_suba" , SQL_PASSWORD
'----------------------Second Report Here-----------------------------------------------
Set webSource1 = CreateObject("WebReportSource.WebReportSource"
webSource1.ReportSource = webBroker1
webSource1.URL = URL1
webSource1.PromptOnRefresh = False
'----------Add Parameters------------------------------------------------------
'Set Parameters
webSource1.AddParameter "promptex1", param0.value
'-----------Add login for main report-------------------------------------------
'Add User and Password for Main Report
webSource1.AddParameter "USER0", SQL_LOGONNAME
webSource1.AddParameter "password0", SQL_PASSWORD
'------------Add login for all sub reports with name----------------------------
'Add User and Password for Sub Report1
webSource1.AddParameter "user0@cr_Crime_Incident_sub" , SQL_LOGONNAME
webSource1.AddParameter "password0@cr_Crime_Incident_sub" , SQL_PASSWORD
'Add User and Password for Sub Report2
webSource1.AddParameter "user0@cr_Poperty_sub" , SQL_LOGONNAME
webSource1.AddParameter "password0@cr_Crime_Incident_sub" , SQL_PASSWORD
'---------------------------------------------------------------------------
'Report Runs Now
CRViewer.ReportSource = webSource0
CRViewer.ViewReport
CRViewer1.ReportSource = webSource1
CRViewer1.ViewReport
end if
End Sub
-->
</SCRIPT>
</BODY>
</HTML>
Here is the code I am running:
<!-- INVESTIGATION REPORT -->
<html>
<head>
<TITLE>Investigation Report</TITLE>
</head>
<BODY BGCOLOR=C6C6C6 LANGUAGE=VBScript topmargin=0 leftmargin=0>
<!--REVIEW PREVIEW SETTINGS FOR ACTX -->
'<table width = 100% ><tr><td width = 50%>
<OBJECT ID="CRViewer"
CLASSID="CLSID:C4847596-972C-11D0-9567-00A0C9273C2A"
WIDTH=100% HEIGHT=50%
CODEBASE="/viewer/activeXViewer/activexviewer.cab#Version=8,5,0,217">
<PARAM NAME="EnableDrillDown" VALUE=0>
<PARAM NAME="EnableExportButton" VALUE=1>
<PARAM NAME="DisplayGroupTree" VALUE=0>
<PARAM NAME="EnableGroupTree" VALUE=0>
<PARAM NAME="EnableAnimationControl" VALUE=1>
<PARAM NAME="EnablePrintButton" VALUE=1>
<PARAM NAME="EnableRefreshButton" VALUE=1>
<PARAM NAME="EnableSearchControl" VALUE=1>
<PARAM NAME="EnableZoomControl" VALUE=1>
<PARAM NAME="EnableSearchExpertButton" VALUE=0>
<PARAM NAME="EnableSelectExpertButton" VALUE=0>
</OBJECT>
</td>
<td>
<!--REVIEW PREVIEW SETTINGS FOR ACTX -->
<OBJECT ID="CRViewer1"
CLASSID="CLSID:C4847596-972C-11D0-9567-00A0C9273C2A"
WIDTH=100% HEIGHT=99%
CODEBASE="/viewer/activeXViewer/activexviewer.cab#Version=8,5,0,217">
<PARAM NAME="EnableDrillDown" VALUE=0>
<PARAM NAME="EnableExportButton" VALUE=1>
<PARAM NAME="DisplayGroupTree" VALUE=0>
<PARAM NAME="EnableGroupTree" VALUE=0>
<PARAM NAME="EnableAnimationControl" VALUE=1>
<PARAM NAME="EnablePrintButton" VALUE=1>
<PARAM NAME="EnableRefreshButton" VALUE=1>
<PARAM NAME="EnableSearchControl" VALUE=1>
<PARAM NAME="EnableZoomControl" VALUE=1>
<PARAM NAME="EnableSearchExpertButton" VALUE=0>
<PARAM NAME="EnableSelectExpertButton" VALUE=0>
</OBJECT>
</td></tr></table>
<!-- #include file=RetrieveIStore.csp -->
<%
'WRITTEN BY TIM MCGINNIS 11/15/02
'REPORTNAME IS THE NAME OF THE REPORT
'FUNCTION GetReportID Gets the Crystal Enterprise ID that represents this report
' and returns a Logon token.
'LOGONTOKEN IS TOKEN THAT CONTAINS THE LOGON INFO NEEDED TO LOGON TO CRYSTAL ENTERPRISE
'RECORDID Is the value for the Crystal Report Parameter
' You Could specify more than 1 parameter
'Each Parameter has the syntax param# = <value>
'Example param0=1¶m1=Paul
' NOTES: When adding another report, you are responsible to
'This code is written only for the actx control
' 1) Set Title of report and review PARAM Settings for previewer
' 2) Build the parameter string and set in both places
' 3) Optionally, you may want to select a different viewer, or use the user default settings by not setting it at all'Use the active x Control viewer
'actx ActiveX
'nav_plugin Netscape Plug-in
'java Java using browser JVM
'java_plugin Java using Java Plug-in
'html_page Standard HTML
'html_frame DHTML with Frames
' 4) Supply the Subreport names and SQL Logon string
IF GetReportID("INV", RPTID, LOGONTOKEN) then
Dim URL
'URL without any parameters except connection
URL = "/JCPRW/viewrpt.cwr?id=" & RPTID & "&apstoken=" & LOGONTOKEN
'---------------Add param's here--------------------------------------------------------------------
'Add param's here
response.write "<INPUT id=""param0"" type=""hidden"" value=""" & Request.querystring("param0" & """>"
'---------------Leave this line alone. Set params in VBScript--------------------------------------
response.write "<INPUT id=""txtURL"" type=""hidden"" value=""" & URL & """>"
else
response.write "<B> Could not find a report by that name. </B>"
end if
IF GetReportID("PROP", RPTID, LOGONTOKEN) then
Dim URL1
'URL without any parameters except connection
URL1 = "/JCPRW/viewrpt.cwr?id=" & RPTID & "&apstoken=" & LOGONTOKEN
'---------------Add param's here--------------------------------------------------------------------
'Add param's here
response.write "<INPUT id=""param0"" type=""hidden"" value=""" & Request.querystring("param0" & """>"
'---------------Leave this line alone. Set params in VBScript--------------------------------------
response.write "<INPUT id=""txtURL1"" type=""hidden"" value=""" & URL1 & """>"
else
response.write "<B> Could not find a report by that name. </B>"
end if
%>
<SCRIPT LANGUAGE="VBScript">
<!--
Sub window_onLoad()
Page_Initialize()
End Sub
Sub Page_Initialize
On Error Resume Next
Dim webBroker
Dim WebBroker1
Dim URL
Dim URL1
Set webBroker = CreateObject("WebReportBroker.WebReportBroker"
Set webBroker1 = CreateObject("WebReportBroker.WebReportBroker"
URL = txtURL.value
URL1 = txtURL1.value
if err.number <> 0 then
window.alert "Unable to load Report Viewer to create it's resource objects."
else
Dim webSource0
Dim webSource1
Dim SQL_LOGONNAME
Dim SQL_PASSWORD
SQL_LOGONNAME = "JC_CRUser"
SQL_PASSWORD = "52cr8737"
Set webSource0 = CreateObject("WebReportSource.WebReportSource"
webSource0.ReportSource = webBroker
webSource0.URL = URL
webSource0.PromptOnRefresh = False
'----------Add Parameters------------------------------------------------------
'Set Parameters
webSource0.AddParameter "promptex0", param0.value
'-----------Add login for main report-------------------------------------------
'Add User and Password for Main Report
webSource0.AddParameter "USER0", SQL_LOGONNAME
webSource0.AddParameter "password0", SQL_PASSWORD
'------------Add login for all sub reports with name----------------------------
'Add User and Password for Sub Report1
webSource0.AddParameter "user0@cr_Offense_subbox5" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Offense_subbox5" , SQL_PASSWORD
'Add User and Password for Sub Report2
webSource0.AddParameter "user0@cr_weapon_subbox18" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_weapon_subbox18" , SQL_PASSWORD
'Add User and Password for Sub Report3
webSource0.AddParameter "user0@cr_vechile_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_vechile_sub" , SQL_PASSWORD
'Add User and Password for Sub Report4
webSource0.AddParameter "user0@cr_teletype_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_teletype_sub" , SQL_PASSWORD
'Add User and Password for Sub Report5
webSource0.AddParameter "user0@cr_evidence_bag_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_evidence_bag_sub" , SQL_PASSWORD
'Add User and Password for Sub Report6
webSource0.AddParameter "user0@cr_Xref_subbox54" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Xref_subbox54" , SQL_PASSWORD
'Add User and Password for Sub Report7
webSource0.AddParameter "user0@cr_chemical_lab_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_chemical_lab_sub" , SQL_PASSWORD
'Add User and Password for Sub Report8
webSource0.AddParameter "user0@cr_ballistic_lab_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_ballistic_lab_sub" , SQL_PASSWORD
'Add User and Password for Sub Report9
webSource0.AddParameter "user0@cr_summons_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_summons_sub" , SQL_PASSWORD
'Add User and Password for Sub Report10
webSource0.AddParameter "user0@cr_Arrested_sub" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Arrested_sub" , SQL_PASSWORD
'Add User and Password for Sub Report11
webSource0.AddParameter "user0@cr_offense_subb" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_offense_subb" , SQL_PASSWORD
'Add User and Password for Sub Report12
webSource0.AddParameter "user0@cr_offense_subbox5a" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_offense_subbox5a" , SQL_PASSWORD
'Add User and Password for Sub Report13
webSource0.AddParameter "user0@cr_Crime_Incident" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Crime_Incident" , SQL_PASSWORD
'Add User and Password for Sub Report14
webSource0.AddParameter "user0@cr_weapon_subbox18a" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_weapon_subbox18a" , SQL_PASSWORD
'Add User and Password for Sub Report15
webSource0.AddParameter "user0@cr_vechile_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_vechile_suba" , SQL_PASSWORD
'Add User and Password for Sub Report16
webSource0.AddParameter "user0@cr_teletype_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_teletype_suba" , SQL_PASSWORD
'Add User and Password for Sub Report17
webSource0.AddParameter "user0@cr_evidence_bag_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_evidence_bag_suba" , SQL_PASSWORD
'Add User and Password for Sub Report18
webSource0.AddParameter "user0@cr_Xref_subbox54a" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Xref_subbox54a" , SQL_PASSWORD
'Add User and Password for Sub Report19
webSource0.AddParameter "user0@cr_chemical_lab_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_chemical_lab_suba" , SQL_PASSWORD
'Add User and Password for Sub Report20
webSource0.AddParameter "user0@cr_ballistic_lab_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_ballistic_lab_suba" , SQL_PASSWORD
'Add User and Password for Sub Report21
webSource0.AddParameter "user0@cr_summons_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_summons_suba" , SQL_PASSWORD
'Add User and Password for Sub Report22
webSource0.AddParameter "user0@cr_Arrested_suba" , SQL_LOGONNAME
webSource0.AddParameter "password0@cr_Arrested_suba" , SQL_PASSWORD
'----------------------Second Report Here-----------------------------------------------
Set webSource1 = CreateObject("WebReportSource.WebReportSource"
webSource1.ReportSource = webBroker1
webSource1.URL = URL1
webSource1.PromptOnRefresh = False
'----------Add Parameters------------------------------------------------------
'Set Parameters
webSource1.AddParameter "promptex1", param0.value
'-----------Add login for main report-------------------------------------------
'Add User and Password for Main Report
webSource1.AddParameter "USER0", SQL_LOGONNAME
webSource1.AddParameter "password0", SQL_PASSWORD
'------------Add login for all sub reports with name----------------------------
'Add User and Password for Sub Report1
webSource1.AddParameter "user0@cr_Crime_Incident_sub" , SQL_LOGONNAME
webSource1.AddParameter "password0@cr_Crime_Incident_sub" , SQL_PASSWORD
'Add User and Password for Sub Report2
webSource1.AddParameter "user0@cr_Poperty_sub" , SQL_LOGONNAME
webSource1.AddParameter "password0@cr_Crime_Incident_sub" , SQL_PASSWORD
'---------------------------------------------------------------------------
'Report Runs Now
CRViewer.ReportSource = webSource0
CRViewer.ViewReport
CRViewer1.ReportSource = webSource1
CRViewer1.ViewReport
end if
End Sub
-->
</SCRIPT>
</BODY>
</HTML>