[Gambas-user] [Gambas Bug Tracker] Bug #1093: Short cut keys not working for gb.qt5 menu if parent menu caption is blank

2017-05-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1093=L21haW4- Comment #1 by Benoît MINISINI: Apparently it works in the development version. Can you try it? -- Check out the vibrant tech community on one of the

Re: [Gambas-user] TryIcon issues

2017-05-06 Thread Jorge Carrión
Thanks Charlie it works... almost. I used Quit command because in my project I have a watch class object, from gb.inotify component, and a project doesn't end if there is a watch active. I change de code to: mywachobject.Pause miwachobject = Null TrayIcon1.visible = False Me.Close And

Re: [Gambas-user] TryIcon issues

2017-05-06 Thread Charlie
Try the following code: - *Public Sub form_Open() TrayIcon1.Visible = True End Public Sub Menu4_Click() TrayIcon1.Visible = False Me.Close End* The use of *Quit* is not recommended see http://gambaswiki.org/wiki/lang/quit I used *gb.gui* to get rid

Re: [Gambas-user] transparency on rotated image

2017-05-06 Thread Charlie
If you change: - *sImg.drawImage(sImg2)* to *sImg.PaintImage(sImg2, 0, 0)* and *sImg.DrawImage(sImg2, 50, 50)* to *sImg.PaintImage(sImg2, 50, 50)* It seems to help, see the help section on PaintImage. - Check out