Hi all.
Working from home now. Hope the situation wil get back to normal soon!
In my project I foun a hand crafted critical section (below). It's in a timer callback, to prevent multiple callbacks from entering the funtion.
Is there a construct in Powerbuilder 19 that will do this out of the box?
if not gUpdating then
gUpdating = true
of_get_stuff()
gUpdating = false
end if
Yes it's a global boolean.
I think your Timer(0) suggestion may be a good solution.
Thanks
Haakon