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
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
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
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
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
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: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: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
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
--
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
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
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
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
Thanks for clarifying!
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user
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
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
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", "
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:
>
> 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
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
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-
Comment #1 by Benoît MINISINI:
This is by design. I transform your bug into a request.
--
___
Gambas-user m
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
24 matches
Mail list logo