Visual Basic - Crystal Reports y VB

Life is soft - evento anual de software empresarial
 
Vista:

Crystal Reports y VB

Publicado por Gush (181 intervenciones) el 05/02/2010 21:08:19
Hola colegas:

tengo un problema al abrir un reporte con crystal, mi codigo es el siguiente:

Set objReport = Nothing
Set objReport = CRapp.OpenReport("C:\mireporte.rpt", 1)
Set crParametros = objReport.ParameterFields
For Each crParametro In crParametros
Select Case crParametro.ParameterFieldName
Case "FechaIn"
crParametro.AddCurrentValue (dtDe.Value)
Case "FechaFin"
crParametro.AddCurrentValue (dtHasta.Value)
End Select
Next
With frmReport.crReport
.ReportSource = objReport
.ViewReport
.DisplayGroupTree = False
.EnableGroupTree = False
frmReport.Caption = "Mi reporte"
frmReport.Show
End With

pero al ejecutarce el reporte me manda un mensaje "el servidor aun no ha sido abierto" y no me extrae nada de info.

Que puedo hacer?
Gracias anticipadas!!
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder