I have one day to finish this, I guess I could just leave it but I Hate to do that (new job bigger and better, lol)
Here is the code I have in my init of my report bound form,
PARAMETERS reportlocation
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.
When I go to open this it tells me can not start the server or something like that.
If I run a access bound report it works great, just when my
connection is SQL. So Question (after all that) How can I connect to an SQL Server with these parameters
USERNAME: test_user
PASSWORD: jinksycat
SERVER: JESTER_SQL
Here is the code I have in my init of my report bound form,
PARAMETERS reportlocation
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.
When I go to open this it tells me can not start the server or something like that.
If I run a access bound report it works great, just when my
connection is SQL. So Question (after all that) How can I connect to an SQL Server with these parameters
USERNAME: test_user
PASSWORD: jinksycat
SERVER: JESTER_SQL