Salve a tutti, sono nuovo del forum e sper che pssiate aiutami, ho un problema con crystal report 8 e cioe': ho chet una form con vb6 ho inserito il CRviewer nel form e per richiamarlo ho inserit un pulsante e nell' event clik c'e' questo codice:

Dim crAPP As New CRAXDRT.Application
Dim Report As CRAXDRT.Report
Dim tbl As CRAXDRT.DatabaseTable

Set Report = crApp.OpenReport("C:\Prove\Prova.rpt")

For Each tbl In Report.Database.Tables
tbl.SetLogOnInfo "F:\Prove\Prova.mdb"
Next

CRViewer1.ReportSource = Report
CRViewer1.ViewReport
' Vengono distrutti gli oggetti
Set Report = Nothing
Set crApp = Nothing

Il problema si presenta all' apertura del report con quest errore: Server has not yet been opened, perche' dice che la connessione non e' aperta??
Ringrazio tutti in anticip grazie.