Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Server has not yet been opened error message

Status
Not open for further replies.

Jefftopia

Programmer
Jul 30, 2002
104
US
I am attempting to access a CR Report through Vb6 using parameters. Here is my code:

Private Sub mnuView2_Click()

'Run Report.
Screen.MousePointer = vbHourglass
frmRptView.Show
rptWriteUp.ParameterFields.Item(1).AddCurrentValue CInt(frmWriteUp.txtWU_id.Text)
frmRptView.CRViewer1.ReportSource = rptWriteUp
frmRptView.CRViewer1.ViewReport
Screen.MousePointer = vbDefault

End Sub

I am getting the following error-->

Crystal Report Viewer:

Server has not yet been opened

HELP!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top