Re: [Gambas-user] How to know is my Form activated or not?

2015-05-02 Thread Tobias Boege
On Sat, 02 May 2015, abbat81 wrote: > In Event I use *Form_Activate()* and *Form_Deactivate()* > > But I need to have boolean Y/N when I ask. > How about Private $bActive As Boolean Public Sub Form_Activate() $bActive = True End Public Sub Form_Deactivate() $bActive = False

[Gambas-user] How to know is my Form activated or not?

2015-05-02 Thread abbat81
In Event I use *Form_Activate()* and *Form_Deactivate()* But I need to have boolean Y/N when I ask. -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-know-is-my-Form-activated-or-not-tp51426.html Sent from the gambas-user mailing list archive at Nabble.com. ---