A manually added resize event with event id 'pgm_size' on a Custom Visual object behaviors differently on a window between Powerbuilder 12 and Appoen Powerbuilder 2019R2 beta:
In Powerbuilder 2019R2 Beta: This resize event is triggered even before constructor is executed while Powerbuilder 12 executes Constructor first and then trigger the resize event.
To solve the issuer when I migrated to the latest version I have to add an instant var to prevent the resize event gets triggered before Constructor.
Does anyone else have this issue or solve the issue? Thanks in advance.
It's nice as a workaround to use post constructor events and ue_init() and so on, but that makes it way harder to eliminate flickering from you window while controls are being loaded, especially since SetRedraw() doesn't seem to do much on userobjects / tabpages.