Hi Xailer Team.
There is a problem with a FR inside a owner preview, you can test it with Samples\FastReport\OwnPreview.xpj
All goes ok if you print once, if you try twice nothing goes, no print and no error.
In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
Problems with OwnPreview
Problems with OwnPreview
BiSoft Desarrollo de software profesional
http://www.bisoft.es
http://www.bisoft.es
- ignacio
- Site Admin
- Mensajes: 9309
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
Re: Problems with OwnPreview
Hi,
Not able to reproduce you error. Please indicate the exact operations to reproduce your error on sample \FastReport\OwnPreview. TIA.
Regards,
Not able to reproduce you error. Please indicate the exact operations to reproduce your error on sample \FastReport\OwnPreview. TIA.
Regards,
Re: Problems with OwnPreview
It's easy
Open the project Samples\FastReport\OwnPreview.xpj and run, make click over [Print] button and print the document on paper or to a Pdf printer, all goes OK.
Now, try to print a second copy... [Print] do not run.
Thanks
Open the project Samples\FastReport\OwnPreview.xpj and run, make click over [Print] button and print the document on paper or to a Pdf printer, all goes OK.
Now, try to print a second copy... [Print] do not run.
Thanks
BiSoft Desarrollo de software profesional
http://www.bisoft.es
http://www.bisoft.es
- ignacio
- Site Admin
- Mensajes: 9309
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
Re: Problems with OwnPreview
Not so easy. I'm a afraid.
Just push the Show button before pushing the Print button again. If you have to blame someone, blame on Fast-Repport.
Regards,
Just push the Show button before pushing the Print button again. If you have to blame someone, blame on Fast-Repport.
Regards,
Re: Problems with OwnPreview
Ok "solved"
If someone wants to print twice, before print a new copy I send a fr:Show(), ugly but effective.
But, in FR's original preview works well.
If someone wants to print twice, before print a new copy I send a fr:Show(), ugly but effective.
But, in FR's original preview works well.
BiSoft Desarrollo de software profesional
http://www.bisoft.es
http://www.bisoft.es
- ignacio
- Site Admin
- Mensajes: 9309
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
Re: Problems with OwnPreview
Hi,
Our code is strictly a call to the FR print method and we do not anything else. So, is not our fault. I guess FR recreates the report if has been already printed. That's all.
Regards,
Our code is strictly a call to the FR print method and we do not anything else. So, is not our fault. I guess FR recreates the report if has been already printed. That's all.
Regards,
Código: Seleccionar todo
XA_FUNC( XFASTREPORT_PRINTC )
{
static Print pFunction = NULL;
PHB_ITEM Self = hb_stackSelfItem();
BOOL lSuccess = FALSE;
long pObject = XA_ObjGetNL( Self, "pObject" );
if( pObject )
{
if( !pFunction )
pFunction = (Print) GetProcAddress( hLib, "Print" );
if( pFunction )
lSuccess = ( pFunction )( pObject );
else
SetError( 125, "Exported function Print() not found in DLL" );
}
hb_retl( lSuccess );
}