Hi All,
We need your help, please.
We have a problem when call the timer in PB2019 R2, the timer return "-1" state , Do you no know what is the problem and the solution?
Code
int li_log_timer
li_log_timer = timer(ide_timer_seg, w_pesado_proceso_balanza_tercero)
li_log_timer = -1 (this is the return state)
thanks and regards,
Fernando.
That's what I'm being using,I founded out that the problem has to be with PB's Runtime, I have uninstalled and deleted all trace of PB 11.5 and PB2019 R1 Runtimes and Reinstalled PB 2019 R2 Runtime and finally worked!.
Thanks for your reply.
Alonso
Ahhhh.... a comnon mistake that many PB developers have made throughout PB's many releases. When you install more that one PB version, you need to make sure that you check your O/S's "System Path" after the installation process to make sure that the higher PB Version is *first* in the library path. Most PB runtime DLL's are numbered but some are not. Typically, these non-numbered runtime DLL's are downward compatible at runtime but *not* upward compatible. If a higher PB version App picks up a lower non-numbered DLL at runtime, the App may not behave properly (as you are now experiencing). HTH
Regards ... Chris