Re: [Gambas-user] About trayIcon popupmenu.

2016-10-29 Thread Jorge Carri贸n
Your're welcome 馃榾馃榾 2016-10-29 14:07 GMT+02:00 Gianluigi : > Jorge, > thanks to you, a much more efficient trick of this: > > Public Sub Form_Show() > > Me.Visible = False > > End > > which I used until now. > > Regards > Gianluigi > > 2016-10-29 10:36 GMT+02:00 Jorge Carri贸n : > > > Gianluig

Re: [Gambas-user] About trayIcon popupmenu.

2016-10-29 Thread Gianluigi
Jorge, thanks to you, a much more efficient trick of this: Public Sub Form_Show() Me.Visible = False End which I used until now. Regards Gianluigi 2016-10-29 10:36 GMT+02:00 Jorge Carri贸n : > Gianluigi and Demostenes: > > I've follow the conversation between both of you and I undestand

Re: [Gambas-user] About trayIcon popupmenu.

2016-10-29 Thread Jorge Carri贸n
Gianluigi and Demostenes: I've follow the conversation between both of you and I undestand now. How it works. I was confused because of Benoit old example wich uses a Module instead a Form. I think the trick is to make a little Form with Border=False, transparent=true, skiptaskbar=true, with menu

Re: [Gambas-user] About trayIcon popupmenu.

2016-10-28 Thread Demosthenes Koptsis
See at Application Farm, the VirtualDVD project. It implements the sys tray icon with a popup menu On 10/28/2016 07:49 PM, Gianluigi wrote: > Hi Jorge, > not sure I understand. > Had you seen this post? [0] > Regards > Gianluigi > > [0] http://gambas.8142.n7.nabble.com/Menu-has-no-Click-event-td

Re: [Gambas-user] About trayIcon popupmenu.

2016-10-28 Thread Gianluigi
Hi Jorge, not sure I understand. Had you seen this post? [0] Regards Gianluigi [0] http://gambas.8142.n7.nabble.com/Menu-has-no-Click-event-td57442.html 2016-10-28 18:01 GMT+02:00 Jorge Carri贸n : > This is the code of the old trayIcon example from Benoit.. > > Private $hTrayIcon As TrayIcon > >

[Gambas-user] About trayIcon popupmenu.

2016-10-28 Thread Jorge Carri贸n
This is the code of the old trayIcon example from Benoit.. Private $hTrayIcon As TrayIcon Public Sub Main() $hTrayIcon = New TrayIcon As "TrayIcon" $hTrayIcon.Show End Public Sub TrayIcon_MouseDown() $hTrayIcon.Hide End It works for me except the MouseDown event, that works now with C