PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → TablePrint not working in Production Environment
TablePrint not working in Production Environment
Iniciado por guest, 19,abr. 2016 17:08 - 3 respuestas
Publicado el 19,abril 2016 - 17:08
WinDev 20

I am having issues with TablePrint. I added a couple of print buttons and all is well in test mode/dev PC, but when I move code to QA servers, the buttons do nothing??

The QA servers are VMs and have printers setup.

I am checking for missing DLLs but what else could it be??
Publicado el 20,abril 2016 - 12:16
Hi,

what is the code on the buttons?

regards
Allard
Publicado el 20,abril 2016 - 14:16
Here is the code... sorry should have included in original post:


tmpstring is string = "Communications History for " + PEO_Rec.PEO_FullName

iPreview(i100, tmpstring, True)
iParameter(iOrientation, iOrientation_Landscape)
TablePrint(Table_arrCOMM_Data,WithDate+WithNbPages+WithNbRecords+WithTitle)
Publicado el 20,abril 2016 - 23:53
Hello Terry


Can you establish a vpn connection to the remote computer so that you can use the remote debugger and trace the code?

or

Try inserting a few info() statements so that you can at least see at which line it stops and also what is really in each of the parameters you are sending. The PEO_Rec.PEO_FullName variable may have a value that is making it crash.

Regards
Al