a Few issues and I can't find any infor
I have an Access 2000 database using the activex viewer
All works well when run on the local hard drive when moving to netwrok drive I get Log on failure or unable to provide free license in time
I know there is a fix for the license but it only applies to .net.
The database is unsecured
we use windows 2000 and I would guess there would be some sort of permission or limitation over the network. I cannot find any RDC documentation.
I am really having my fill with Crytal now what good is it if I can't enpower the end user
here is my code:
Me.CrystalReport1.Visible = True
Set crxReport = crxApplication.OpenReport(strPath & "\SummaryReport.rpt")
have played with this
'With crxReport.Database.Tables(1).ConnectionProperties
'.Item("Session UserID") = ""
'.Item("Session Password") = ""
'End With
'accessing the database and reading records
crxReport.ReadRecords
'Setting the ReportSource of the CrViewer control to the Report object
Me!CrystalReport1.ReportSource = crxReport
'view the report.
Me!CrystalReport1.ViewReport
'Setting the zoom = 80%
CrystalReport1.Zoom (75)
'default mouse pointer
'do events first before continuing in order to avoid application crashes
While Me!CrystalReport1.IsBusy
DoEvents
Wend
I have an Access 2000 database using the activex viewer
All works well when run on the local hard drive when moving to netwrok drive I get Log on failure or unable to provide free license in time
I know there is a fix for the license but it only applies to .net.
The database is unsecured
we use windows 2000 and I would guess there would be some sort of permission or limitation over the network. I cannot find any RDC documentation.
I am really having my fill with Crytal now what good is it if I can't enpower the end user
here is my code:
Me.CrystalReport1.Visible = True
Set crxReport = crxApplication.OpenReport(strPath & "\SummaryReport.rpt")
have played with this
'With crxReport.Database.Tables(1).ConnectionProperties
'.Item("Session UserID") = ""
'.Item("Session Password") = ""
'End With
'accessing the database and reading records
crxReport.ReadRecords
'Setting the ReportSource of the CrViewer control to the Report object
Me!CrystalReport1.ReportSource = crxReport
'view the report.
Me!CrystalReport1.ViewReport
'Setting the zoom = 80%
CrystalReport1.Zoom (75)
'default mouse pointer
'do events first before continuing in order to avoid application crashes
While Me!CrystalReport1.IsBusy
DoEvents
Wend