Re: [Gambas-user] Testing Gambas 3.5.3

2014-04-07 Thread Jussi Lahtinen
I see only this small oddity. See attached screenshot. Otherwise everything seems to work correctly. Jussi On Mon, Apr 7, 2014 at 10:54 PM, Benoît Minisini < gam...@users.sourceforge.net> wrote: > Le 07/04/2014 21:51, Benoît Minisini a écrit : > > Hi, > > > > I have uploaded a source package o

Re: [Gambas-user] Array.Remove() documentation

2014-04-07 Thread Jussi Lahtinen
The "backwards" bit is wrong. As it would imply counting indexes ... , 3, 2, 1, 0. I think it would be good thing to put examples if possible. Something like: Dim iArr As New Integer[] iArr.Insert([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) iArr.Remove(5, 5) and iArr.Remove(5, -1) yields same result, whic

Re: [Gambas-user] Array.Remove() documentation

2014-04-07 Thread Benoît Minisini
Le 07/04/2014 22:18, Tobias Boege a écrit : > Hi, > > the documentation[0] says about Array.Remove() that if Length is negative, > then all the elements from Index on backwards are removed, i.e. > >hArray.Remove(i, -42) > > is equivalent to > >For j = 0 To i > hArray.Remove(0) >Nex

[Gambas-user] Array.Remove() documentation

2014-04-07 Thread Tobias Boege
Hi, the documentation[0] says about Array.Remove() that if Length is negative, then all the elements from Index on backwards are removed, i.e. hArray.Remove(i, -42) is equivalent to For j = 0 To i hArray.Remove(0) Next But in practice (using Dim hArray As Array = myIntegerArray), it

Re: [Gambas-user] Testing Gambas 3.5.3

2014-04-07 Thread Benoît Minisini
Le 07/04/2014 21:51, Benoît Minisini a écrit : > Hi, > > I have uploaded a source package of the upcoming Gambas 3.5.3 so that > people can test it before an official release. > > It's there: > > http://sourceforge.net/projects/gambas/files/gambas3/gambas3-3.5.3.tar.bz2/download > > So please test

[Gambas-user] Testing Gambas 3.5.3

2014-04-07 Thread Benoît Minisini
Hi, I have uploaded a source package of the upcoming Gambas 3.5.3 so that people can test it before an official release. It's there: http://sourceforge.net/projects/gambas/files/gambas3/gambas3-3.5.3.tar.bz2/download So please test it and report! I will write the changelog soon... Regards,

Re: [Gambas-user] New Gambas wiki is online!

2014-04-07 Thread Julio Sanchez
Hello: It would be interesting to add a search button so that users could search for words, and get a list of addresses where they appear For example: Search: combobox And you see the following addresses: http://gambaswiki.org/wiki/comp/gb.qt4/combobox Regards 2014-03-12 1:01 GMT+01:00 Tobia

Re: [Gambas-user] Documentation about gb.web

2014-04-07 Thread Benoît Minisini
Le 07/04/2014 12:24, Rolf-Werner Eilert a écrit : > > Yes. Then we should swap the examples or the headers for the examples, > as it says it the other way round. > > Thank you! > > Rolf > No, where does it say the other way round? Just try the example. -- Benoît Minisini ---

Re: [Gambas-user] Documentation about gb.web

2014-04-07 Thread Rolf-Werner Eilert
Am 04.04.2014 20:36, schrieb Benoît Minisini: > Le 03/04/2014 11:17, Rolf-Werner Eilert a écrit : >> Just browsed through the documentation for gb.web and this made me >> wonder: >> >> In the example on http://gambaswiki.org/wiki/doc/webpage >> >> aren't the two code snippets swapped? I mean, whe