jueves, 12 de noviembre de 2020

Imprimir

 //Imprimir sin qry


// Open the preview window
iPreview()
// Print the report while passing parameters
iPrintReport(RPT_DB_Socio,RADIO_Persona..Value, RADIO_Activos..Value)


//imprimir con qry

 

    // Open the preview window
    iPreview()
    
    iInitReportQuery(RPT_Soc_Historico,gsIdSocio,gdFechaInicial, gdFechaFinal)
    // Print the report while passing parameters
    iPrintReport(RPT_Soc_Historico,gsIdSocio,gdFechaInicial, gdFechaFinal)


Try catch end

 // -------------------------------------------------- // Procedure principal que executa uma query com tratamento de exceção // -----------...