[Gambas-user] IDE code questions - property editors

2015-10-05 Thread adamn...@gmail.com
I think this is way out there in the cosmos somewhere, but I'll ask anyway. I am wading through the FProperty code of the IDE trying to understand how the values for properties are set (bad term) in the grid. When I get down to CControl.GetProperty(sProp As String) I see the following (with ann

[Gambas-user] [Gambas Bug Tracker] Bug #791: Window Select a Project, Click toggle button Image Preview and Detailed View no different.

2015-10-05 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.791&from=L21haW4- Comment #1 by Benoît MINISINI: This is by design. I transform your bug into a request. -- ___ Gambas-user m

[Gambas-user] [Gambas Bug Tracker] Bug #792: No formatting when breaking a comment line

2015-10-05 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.792&from=L21haW4- Comment #1 by Benoît MINISINI: Fixed in revision #7391. -- ___ Gambas-user mailing list Gambas-user@lists.

[Gambas-user] [Gambas Bug Tracker] Bug #792: No formatting when breaking a comment line

2015-10-05 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.792&from=L21haW4- Benoît MINISINI changed the state of the bug to: Fixed. -- ___ Gambas-user mailing list Gambas-user@lists.s

[Gambas-user] [Gambas Bug Tracker] Bug #791: Window Select a Project, Click toggle button Image Preview and Detailed View no different.

2015-10-05 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.791&from=L21haW4- Benoît MINISINI changed the state of the bug to: Accepted. -- ___ Gambas-user mailing list Gambas-user@list

Re: [Gambas-user] Fixed arrays still dynamic

2015-10-05 Thread Tobias Boege
On Mon, 05 Oct 2015, Moviga Technologies wrote: > > Ah, yes - it slipped my mind that inline arrays instantiates a new > object. > My example should rather have been: > > Dim aCarBrands As New String[5] > > With aCardBrands >.Add("Volvo") >.Add("Saab") >.Add("Fiat") >.Add("Aston

Re: [Gambas-user] Fixed arrays still dynamic

2015-10-05 Thread Moviga Technologies
Ah, yes - it slipped my mind that inline arrays instantiates a new object. My example should rather have been: Dim aCarBrands As New String[5] With aCardBrands .Add("Volvo") .Add("Saab") .Add("Fiat") .Add("Aston Martin") .Add("Skoda") .Add("VW") .Add("Audi") End With So, t

Re: [Gambas-user] Fixed arrays still dynamic

2015-10-05 Thread Tobias Boege
On Mon, 05 Oct 2015, Moviga Technologies wrote: > I thought when one declares a fixed array, one should not be able to add > new elements to it? > But, this works: > > ' Gambas module file > > Public Sub Main() > > Dim sCarBrands As New String[5] > >sCarBrands = ["Volvo", "Saab", "Fiat", "

Re: [Gambas-user] Fixed arrays still dynamic

2015-10-05 Thread Benoît Minisini
Le 05/10/2015 23:07, Moviga Technologies a écrit : > I thought when one declares a fixed array, one should not be able to add > new elements to it? > But, this works: > > ' Gambas module file > > Public Sub Main() > > Dim sCarBrands As New String[5] > > sCarBrands = ["Volvo", "Saab", "Fiat", "A

[Gambas-user] Fixed arrays still dynamic

2015-10-05 Thread Moviga Technologies
I thought when one declares a fixed array, one should not be able to add new elements to it? But, this works: ' Gambas module file Public Sub Main() Dim sCarBrands As New String[5] sCarBrands = ["Volvo", "Saab", "Fiat", "Aston Martin", "Skoda"] sCarBrands.Add("Audi") sCarBrands.Add("V

Re: [Gambas-user] Embedded arrays

2015-10-05 Thread Moviga Technologies
Thanks for clarifying! -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Embedded arrays

2015-10-05 Thread Moviga Technologies
Well, at least it confirms to me that they are normally not used :) -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinf

Re: [Gambas-user] Embedded arrays

2015-10-05 Thread Benoît Minisini
Le 05/10/2015 21:44, Moviga Technologies a écrit : > If my question remains unanswered because it was not clear, this is what > I meant: > > When do you want to use: > Dim sText[] As String > > instead of: > Dim sText As String[] > > According to the wiki it seems they can only be used with native

Re: [Gambas-user] Embedded arrays

2015-10-05 Thread Tobias Boege
On Mon, 05 Oct 2015, Moviga Technologies wrote: > If my question remains unanswered because it was not clear, this is what > I meant: > > When do you want to use: > Dim sText[] As String > > instead of: > Dim sText As String[] > > According to the wiki it seems they can only be used with native

Re: [Gambas-user] Embedded arrays

2015-10-05 Thread Moviga Technologies
If my question remains unanswered because it was not clear, this is what I meant: When do you want to use: Dim sText[] As String instead of: Dim sText As String[] According to the wiki it seems they can only be used with native data types? Is that why the book 'Beginners Guide to Gambas' calls

[Gambas-user] [Gambas Bug Tracker] Bug #792: No formatting when breaking a comment line

2015-10-05 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.792&from=L21haW4- Tobias BOEGE reported a new bug. Summary --- No formatting when breaking a comment line Type : Request Priority : Low Gambas version : Unknown Product : Development Environment Description --

Re: [Gambas-user] Pre-release of gambas 3.8.2 - Form cannot load parent Class Form

2015-10-05 Thread Christof Thalhofer
Am 05.10.2015 um 19:44 schrieb Benoît Minisini: > It works on my system (/trunk), and I don't see why it should not write > on Gambas 3.8.2... > > The very last commit may fixes some problems that could look like yours, > so please check gambas daily tomorrow or in two days, and tell me if you

Re: [Gambas-user] Pre-release of gambas 3.8.2 - Form cannot load parent Class Form

2015-10-05 Thread Benoît Minisini
Le 05/10/2015 19:36, Christof Thalhofer a écrit : > Am 05.10.2015 um 19:20 schrieb Benoît Minisini: > >> Gambas daily is not Gambas 3.8.2, it's gambas daily... > > I have not the environment for compilation installed on my machine, > because I usually have to develop with the latest Gambas stable,

Re: [Gambas-user] Pre-release of gambas 3.8.2 - Form cannot load parent Class Form

2015-10-05 Thread Christof Thalhofer
Am 05.10.2015 um 19:20 schrieb Benoît Minisini: > Gambas daily is not Gambas 3.8.2, it's gambas daily... I have not the environment for compilation installed on my machine, because I usually have to develop with the latest Gambas stable, so I've tried gambas daily ... Please, can s.o. try the pr

Re: [Gambas-user] Pre-release of gambas 3.8.2 - Form cannot load parent Class Form

2015-10-05 Thread Benoît Minisini
Le 05/10/2015 19:10, Christof Thalhofer a écrit : > Hello, > > Am 04.10.2015 um 21:03 schrieb Benoît Minisini: > >>> Please report if you have any problem with it. Now I am going to test it >>> on my Mint virtual machine. > > I've tried Gambas-Daily from launchpad and get an error with my main > pr

Re: [Gambas-user] Pre-release of gambas 3.8.2 - Form cannot load parent Class Form

2015-10-05 Thread Christof Thalhofer
Hello, Am 04.10.2015 um 21:03 schrieb Benoît Minisini: >> Please report if you have any problem with it. Now I am going to test it >> on my Mint virtual machine. I've tried Gambas-Daily from launchpad and get an error with my main project: "Cannot load parent class: Class 'Form' could not be lo

[Gambas-user] Embedded arrays

2015-10-05 Thread Moviga Technologies
What exactly is a usage scenario for embedded arrays? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-use

[Gambas-user] [Gambas Bug Tracker] Bug #791: Window Select a Project, Click toggle button Image Preview and Detailed View no different.

2015-10-05 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.791&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge

[Gambas-user] [Gambas Bug Tracker] Bug #791: Window Select a Project, Click toggle button Image Preview and Detailed View no different.

2015-10-05 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.791&from=L21haW4- Zainudin AHMAD reported a new bug. Summary --- Window Select a Project, Click toggle button Image Preview and Detailed View no different. Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Produ