[Gambas-user] Form Bug?

2009-04-17 Thread Rodney Rundstrom
When I started developing Gambas forms I found that to obtain a blank form without a top bar I could set border to none however even with this setting a top bar with a label of the project name is provided on Fmain form . Is this a bug? Am I missing something ? Is there a way around this? Rodn

Re: [Gambas-user] order of children in container

2009-04-17 Thread jbskaggs
I closed the form and reloaded it and the control order changed to how I wanted it. I still am not sure if I understand why. JB SKaggs jbskaggs wrote: > > I have a behavior I do not understand- > > I have several panels with controls in them. > > The controls are numbered sequentially and cr

[Gambas-user] order of children in container

2009-04-17 Thread jbskaggs
I have a behavior I do not understand- I have several panels with controls in them. The controls are numbered sequentially and created in sequential order in the containers. My problem is that sometimes the containers count the controls backwards! for example: i = 0 FOR i = 0 TO Fsetupgame.Pan

Re: [Gambas-user] A refreshing a gui question

2009-04-17 Thread nando
I heavily use ver 1. I found out through experimentation that I get more of what I think it should do by using WAIT or making the SUB very small. In either case, it appears that the runtime needs to have a change to 'do things'. -- Original Message --- From: richard terry To: mai

Re: [Gambas-user] Deb packages from the sources of Gambas

2009-04-17 Thread cristian abarzua
Hey, thank you very much, would never have succeeded without your help. greetings 2009/4/17 Leonardo Miliani > The procedure below is the one I follow to compile Gambas on my Ubuntu > 8.10. It's not "debianish" and it creates one big package that contains > all Gambas but... it works! > > 1)

Re: [Gambas-user] Deb packages from the sources of Gambas

2009-04-17 Thread Leonardo Miliani
The procedure below is the one I follow to compile Gambas on my Ubuntu 8.10. It's not "debianish" and it creates one big package that contains all Gambas but... it works! 1) before to start you have to check that you have all the repositories activated (main, universe, restricted, multiverse) and

Re: [Gambas-user] atanh - wrong calculation

2009-04-17 Thread Andreas Müller
Thanks Jussi. best regards andreas Am Freitag, den 17.04.2009, 01:02 +0300 schrieb Jussi Lahtinen: > Confirmed. > > Regards, > Jussi > > > >?(Atnh(0.5)) > >3,162277660168 > > > > but this is wrong. The definition of atanh() should be: -

Re: [Gambas-user] Gridview select and deselect

2009-04-17 Thread charlesg
Stefano, Yes, thanks for that. I am sure I can make it work. rgds -- View this message in context: http://www.nabble.com/Gridview-select-and-deselect-tp23098365p23102420.html Sent from the gambas-user mailing list archive at Nabble.com. ---

[Gambas-user] Deb packages from the sources of Gambas

2009-04-17 Thread cristian abarzua
Hello 5 months ago I installed the 7.0 version that comes in the repositories of Ubuntu Intrepid Ibex. Benoit has released version 12.0.1 and goes to 13. Consultation. Someone tried to create a DEB packages for the fonts in the version 12.0.1. Usually the one installed with. / Configure, make, ma

Re: [Gambas-user] Gridview select and deselect

2009-04-17 Thread Stefano Palmeri
Il venerdì 17 aprile 2009 16:08:45 charlesg ha scritto: > Hi all > > Having selected a gridview row with a click, I cannot deselect it with > another click as should be normal. > > After reading an old thread here, I have fudged it with an array bSelected > which keeps track of which rows in gvRequ

[Gambas-user] Gridview select and deselect

2009-04-17 Thread charlesg
Hi all Having selected a gridview row with a click, I cannot deselect it with another click as should be normal. After reading an old thread here, I have fudged it with an array bSelected which keeps track of which rows in gvRequired are selected. '--