• Domingo 22 de Diciembre de 2024, 13:15

Autor Tema:  Re: Crystal Reports - Ayuda !!!!!  (Leído 1817 veces)

Boris

  • Nuevo Miembro
  • *
  • Mensajes: 3
    • Ver Perfil
Re: Crystal Reports - Ayuda !!!!!
« en: Martes 27 de Agosto de 2002, 16:28 »
0
estoy por primera vez tratando de trabajar con crystal reports pero me podrian decir por favor como llamo a estos reports desde Visual Basic? Gracias infinitas...

cpmario

  • Miembro HIPER activo
  • ****
  • Mensajes: 629
    • Ver Perfil
    • http://www.cpimario.com
Crystal Reports - Ayuda !!!!!
« Respuesta #1 en: Miércoles 28 de Agosto de 2002, 00:47 »
0
Coloca una referencia a Crystal Report, y añade el control a una forma y llámalo "CrystalReports", después agrega una rutina parecida a esta.

' Reporte de incapacidades
Sub PrintMainReport()
    Dim strFile As String
    On Error GoTo ErrorPrintReport
    strFile = gstrAppPath & "incapacidades.rpt"
    'open and fill report
    With CrystalReports
        .ReportFileName = strFile
        .ReportTitle = strFile
        .DataFiles(0) = gstrDBFilename
        .SelectionFormula = "ISNULL({Fichas.IMSS}) OR {Fichas.IMSS}=''"
        '.SQLQuery = "SELECT * FROM " + "VIEW" + strSelected
        .PrinterCopies = 1
        .PrinterCollation = crptDefault
        .WindowControls = True
        .WindowBorderStyle = crptSizable
        .WindowControlBox = True
        .WindowState = crptMaximized
        .WindowTitle = .ReportFileName
        .Destination = crptToWindow
        .PrintReport
    End With
Exit Sub
ErrorPrintReport:
    GenErrorHandler "frmMain/PrintMainReport()", Err.Number, Err.Description
End Sub