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
  End

Then you can ask $bActive.

Regards,
Tobi

-- 
"There's an old saying: Don't change anything... ever!" -- Mr. Monk

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to