Re: [Gambas-user] A little question about propagation of events and ShowModal.

2014-10-28 Thread Jorge Carrión
>"Modal" means that the window takes all the mouse and keyboard events of >the application (it has its own event loop). Thay explain all my troubles. It's clear now. >A window cannot be closed if there is a "child" modal window open. The >modal window must be closed first. Ok with that >As for

Re: [Gambas-user] A little question about propagation of events and ShowModal.

2014-10-27 Thread Benoît Minisini
Le 27/10/2014 04:56, Jorge Carrión a écrit : > I have a User help routine based in Key F1 keyrelease. > The code is in form FMain Form_KeyRelease() Event. > This event is nicely propagated to all forms in FMain.Controls collection > and all works fine. > Today I've noticed that doesn't work on moda

[Gambas-user] A little question about propagation of events and ShowModal.

2014-10-26 Thread Jorge Carrión
I have a User help routine based in Key F1 keyrelease. The code is in form FMain Form_KeyRelease() Event. This event is nicely propagated to all forms in FMain.Controls collection and all works fine. Today I've noticed that doesn't work on modal forms (opened with ShowModal). If copy/paste the FMa