[Gambas-user] Exist function for checking files seems slower

2014-04-12 Thread Kevin Fishburne
Previous to installing the PPA daily build earlier this evening the loop: Dim Counter1 As Short ' General Counter. For Counter1 = 0 To 32766 If Exist(BasePath & "/image/pwo/" & Counter1 & "_0.png") Then ' Load the texture. ' Code commented out for brevity. Endif

Re: [Gambas-user] customizable background color of unfocused split-view pane

2014-04-12 Thread Kevin Fishburne
On 03/17/2014 07:46 PM, Benoît Minisini wrote: > Le 14/03/2014 04:44, Kevin Fishburne a écrit : >> Under Tools, Preferences, Theme I can find no way to set the background >> color used when splitting the panes to view two sections of code at >> once. The background color, at least for the "Quick" t

Re: [Gambas-user] feature suggestions: detach and rearrange tabs

2014-04-12 Thread Kevin Fishburne
On 04/08/2014 07:01 PM, Benoît Minisini wrote: > Le 19/02/2014 03:11, Kevin Fishburne a écrit : >> I don't know how difficult this would be, but if detachable tabs could >> be implemented (think Chrome browser), that would be awesome. Tangential >> to that would be the ability to rearrange tabs by

Re: [Gambas-user] Precision immediately lost when assigning value to type Single structure property

2014-04-12 Thread Kevin Fishburne
On 04/10/2014 10:50 AM, Jussi Lahtinen wrote: > That is completely expected just try: > Print csingle(180.2) > 180,169 > > You cannot express 180.2 precisely with 32 bits. > Even with 64 bits it's something like: 180.188631 ... > Thanks everyone. I knew floating point variables wor

Re: [Gambas-user] Interpreter's treatment of classes

2014-04-12 Thread Bruno Félix Rezende Ribeiro
Em Sat, 12 Apr 2014 23:52:48 +0200 Benoît Minisini escreveu: > I said rubbish, as it already works like that. If you use a gb.Class > with something that requests an object, the it is automatically > converted to the Class object *except if* the class is > auto-creatable. In that case it is con

Re: [Gambas-user] Example of scrollArea

2014-04-12 Thread Julio Sanchez
Benoît and Tobi: Thank you very much. You can see a simple example that I've done this link: http://cursogambas.blogspot.com.es/2014/04/dibujar-en-gambas-drawingarea-y.html Regards, Jsbsan 2014-04-12 21:36 GMT+02:00 Tobias Boege : > On Sat, 12 Apr 2014, Julio Sanchez wrote: > > Hello > >

Re: [Gambas-user] Interpreter's treatment of classes

2014-04-12 Thread Bruno Félix Rezende Ribeiro
Em Sat, 12 Apr 2014 17:38:03 +0200 Benoît Minisini escreveu: > All that is because, "is a" has two meanings in Gambas. > > 1) An object reference A "is a" class B. It means that the class of > the object A is the class B. > > 2) An expression "is a" datatype. And there are two datatypes, > "gb

Re: [Gambas-user] Example of scrollArea

2014-04-12 Thread Tobias Boege
On Sat, 12 Apr 2014, Julio Sanchez wrote: > Hello > I would like to see an example of ScrollArea, I think the IconView control > is done with it. ( > http://gambas.8142.n7.nabble.com/DrawArea-vs-ScrollArea-td10261.html ) > I can not find the source code of this control > Can you tell me where to fi

Re: [Gambas-user] Example of scrollArea

2014-04-12 Thread Benoît Minisini
Le 12/04/2014 21:13, Julio Sanchez a écrit : > Hello > I would like to see an example of ScrollArea, I think the IconView control > is done with it. ( > http://gambas.8142.n7.nabble.com/DrawArea-vs-ScrollArea-td10261.html ) > I can not find the source code of this control > Can you tell me where to

[Gambas-user] Example of scrollArea

2014-04-12 Thread Julio Sanchez
Hello I would like to see an example of ScrollArea, I think the IconView control is done with it. ( http://gambas.8142.n7.nabble.com/DrawArea-vs-ScrollArea-td10261.html ) I can not find the source code of this control Can you tell me where to find it? Regards Jsbsan --

[Gambas-user] Official release of Gambas 3.5.3

2014-04-12 Thread Benoît Minisini
Hi, Gambas 3.5.3 is now officially available. I backported two fixes since the unofficial release: one in the IDE help system, and another more serious in the interpreter: a memory leak in Upper$() and Lower$(). Download it there: http://sourceforge.net/projects/gambas/files/gambas3/gambas3-3

Re: [Gambas-user] Interpreter's treatment of classes

2014-04-12 Thread Benoît Minisini
Le 11/04/2014 05:17, Bruno Félix Rezende Ribeiro a écrit : > Hello Gambas users and developers! > > I've been studying Gambas for almost a week and a half and I'm very > impressed with the simplicity and elegance of Gambas' object oriented > Basic language implementation. Congratulations to all de