PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Missing 'Closing of a child window' Process
Missing 'Closing of a child window' Process
Iniciado por guest, 25,may. 2016 10:47 - 3 respuestas
Publicado el 25,mayo 2016 - 10:47
Using WinDev 20, I have a free widow that opens another using OpenChild (Customer/Contacts).

I need to know when the child is closed to update the tables in the parent window and I don't want to go modal with the child window.

From the help I thought I could use the 'Closing of a child window' process, but none of my windows has this process and I can't see it in the list to add.

How can I add code to this process? or short of a timer how can I find when the child window has been closed?

Gary.
Publicado el 25,mayo 2016 - 13:22
why don't you put your code in the closing event of your Customer/Contacts window.
Publicado el 25,mayo 2016 - 17:58
Hello Gary

Winstatus() will test the existence of a window.

Regards
Al
Publicado el 25,mayo 2016 - 19:25
Hi Gary,

that process exist only in windev mobile (was added because there are no modal windows under android and ios, so they integrated the timer/check automatically)...

So either you put your code in the closing of the secondary window, or you check in a timer

Best regards