Re: [Gambas-user] transparency on rotated image

2017-05-05 Thread Leon Davis
See attached On Fri, May 5, 2017 at 1:59 AM, Fabien Bodard wrote: > can you send a sample project ? > > 2017-05-04 18:12 GMT+02:00 Leon Davis : > > Using Gambas v3.9.2 and GTK+3 > > > > After I rotate an image "Image.Rotate(0.03)" I get a background I

Re: [Gambas-user] TryIcon issues

2017-05-05 Thread Jorge Carrión
I must apologize about a mistake on the gbLauncher 0.1.4 uploaded this morning to Gambas's Farm. Usually I use my home language (spanish) to variable names etc. Before upload to gambas farm I translate the variables to a understandable english version... but I forgot translate de settings variable

Re: [Gambas-user] Gambas binary to ELF?

2017-05-05 Thread Tobias Boege
On Fri, 05 May 2017, alexchernoff wrote: > Well thanks Tobias, that's a great idea. > > The "AXprotector" ELF protector encrypts the executable so it should be > safe. > > Any suggestions how to build such a self-extractor ELF? > > thanks! > Try the attached archive. It contains 3 things:

Re: [Gambas-user] Math Operation

2017-05-05 Thread cheikh diabang
okey, thank you. i have found how to do that. look at below. Dim get_coef As Float[] get_coef = calcul_coefficients(j, iy_v_c_w, 2) coeff_v_c_w_0 = get_coef[2] coeff_v_c_w_1 = get_coef[1]

Re: [Gambas-user] Math Operation

2017-05-05 Thread Jussi Lahtinen
Ah, of course... Jussi On Fri, May 5, 2017 at 9:57 AM, Fabien Bodard wrote: > yes the copy function is not necessary in this case as [a,b,c] return > a new instance on each call > > 2017-05-04 17:21 GMT+02:00 cheikh diabang : > > I think the

[Gambas-user] TryIcon issues

2017-05-05 Thread Jorge Carrión
I've just upload to Gambas Farm a project called "gbLauncher" it's a utility that uses a TrayIcon with a configurable menu who launch comands and applications, check a pop3 account incoming email notifier and allows you tu send Post-it (Desktop Notes) to your own Desktop or to a remote Desktop

Re: [Gambas-user] Gambas binary to ELF?

2017-05-05 Thread alexchernoff
Well thanks Tobias, that's a great idea. The "AXprotector" ELF protector encrypts the executable so it should be safe. Any suggestions how to build such a self-extractor ELF? thanks! -- View this message in context:

Re: [Gambas-user] Close If Clicked Outside Form

2017-05-05 Thread Fabien Bodard
use MyForm.ShowPopup(...) http://gambaswiki.org/wiki/comp/gb.qt4/window/showpopup?l=fr It was made for that :-). 2017-05-04 19:30 GMT+02:00 Tobias Boege : > On Thu, 04 May 2017, herberth guzman wrote: >> Hi >> >> Close If Clicked Outside Form >> >> Is there any way to close

Re: [Gambas-user] transparency on rotated image

2017-05-05 Thread Fabien Bodard
can you send a sample project ? 2017-05-04 18:12 GMT+02:00 Leon Davis : > Using Gambas v3.9.2 and GTK+3 > > After I rotate an image "Image.Rotate(0.03)" I get a background I can't get > rid of. Bug or Feature? Thank you for any assistance. > > Leon >

Re: [Gambas-user] Math Operation

2017-05-05 Thread Fabien Bodard
yes the copy function is not necessary in this case as [a,b,c] return a new instance on each call 2017-05-04 17:21 GMT+02:00 cheikh diabang : > I think the copy is not necessary. I want just access in one element on > return array. Thank for your help > > >