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
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
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.
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
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
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
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
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", "
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
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
Thanks for clarifying!
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
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
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
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
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
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
--
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
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,
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
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
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
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
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
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
24 matches
Mail list logo