Re: [Gambas-user] Pre-release of Gambas 3.9.0 (episode II)

2016-08-25 Thread Sebastian Kulesz
It will be available in the Beta PPA in a few hours, Launchpad has half of its build farm offline for some reason... On Thu, Aug 25, 2016 at 9:41 PM, Benoît Minisini < gam...@users.sourceforge.net> wrote: > Hi, > > Here is a ne

[Gambas-user] Pre-release of Gambas 3.9.0 (episode II)

2016-08-25 Thread Benoît Minisini
Hi, Here is a new pre-release of Gambas 3.9. Download it at: https://sourceforge.net/projects/gambas/files/gambas3/gambas3-3.9.0.tar.bz2/download This new pre-relase package has the following fixes: * TerminalView is refreshed correctly even if data is coming slowly. * Packager now supports PNG

[Gambas-user] Best way to enumerate multiple arrays or collections?

2016-08-25 Thread Jussi Lahtinen
Sometimes I have code where I have multiple arrays or collections, which I would enumerate at once. Now I have to do it this way: For Each hObject In hCollection1 DoSomething ... Next For Each hObject In hCollection2 DoSomething ... Next And I would like to do it this way: For Each hObjec

[Gambas-user] [Gambas Bug Tracker] Bug #982: Auto add elements to a Struct array when resized

2016-08-25 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.982&from=L21haW4- Comment #4 by Martin CRISTIA: Works, thank you! Martin CRISTIA changed the state of the bug to: Fixed. --

Re: [Gambas-user] Html UTF-8 ISO-8859-1

2016-08-25 Thread Gianluigi
I do not know if it is semantically correct, but this solution seems to work . Regards Gianluigi 2016-08-24 22:17 GMT+02:00 Gianluigi : > Yes, I know the Button2 code posted last night is wrong, perhaps it would > be better so: 😂 > > Dim s As String > > s = "

[Gambas-user] [Gambas Bug Tracker] Bug #982: Auto add elements to a Struct array when resized

2016-08-25 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.982&from=L21haW4- Tobias BOEGE added an attachment: struct-resize-0.0.1.tar.gz -- ___ Gambas-user mailing list Gambas-user@li

[Gambas-user] [Gambas Bug Tracker] Bug #982: Auto add elements to a Struct array when resized

2016-08-25 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.982&from=L21haW4- Comment #3 by Tobias BOEGE: There is a way using the introspection capabilities of the gb component and the assumption that Struct array classes will always have a name of the form "MyStruct[]" where "MyStruct" is a Struct class

[Gambas-user] [Gambas Bug Tracker] Bug #982: Auto add elements to a Struct array when resized

2016-08-25 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.982&from=L21haW4- Comment #2 by Martin CRISTIA: I use lot of Structs in my program, and I need to write a Resize routine for each one of them. Maybe it is possible to write a common routine to resize arrays of structures, but I don't know how.

[Gambas-user] [Gambas Bug Tracker] Bug #982: Auto add elements to a Struct array when resized

2016-08-25 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.982&from=L21haW4- Comment #1 by Tobias BOEGE: While I believe this could theoretically be possible (the interpreter can distinguish a Struct from an ordinary class), I would argue against that change. It makes MyStruct[] behave vastly different f

[Gambas-user] [Gambas Bug Tracker] Bug #982: Auto add elements to a Struct array when resized

2016-08-25 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.982&from=L21haW4- Martin CRISTIA reported a new bug. Summary --- Auto add elements to a Struct array when resized Type : Request Priority : High Gambas version : Unknown Product : Language Description