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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Server not yet started (Foxpro opening Crystal)

Status
Not open for further replies.

lashwarj

IS-IT--Management
Nov 1, 2000
1,067
US
I have a crystal report I open from within Foxpro, when trying to open it i recieve

Server not yet started.


This is the code i have in the INIT EVENT of my report viewer form.


PARAMETERS reportlocation

SQLCONNECT([Queensbury_LIVE, govern, jester4281])
Thisform.WindowState = 2
oCRObject = CREATEOBJECT( "CrystalRunTime.Application" )
oReportObject = oCRObject.OpenReport(reportlocation)
Thisform.oleCRView.ReportSource = oReportObject

Thisform.oleCRView.ViewReport()
Thisform.oleCRView.ZOOM(1)
Thisform.oleCRView.DisplayGroupTree = .F.
Thisform.oleCRView.DisplayTabs = .F.
Thisform.oleCRView.EnableCloseButton = .F.
Thisform.oleCRView.EnableExportButton = .T.
Thisform.oleCRView.EnableSearchExpertButton = .T.
Thisform.oleCRView.EnableSelectExpertButton = .T.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top