:-) It's correct.
Many thanks.
--
From: "Fabien Bodard"
Sent: Saturday, August 28, 2010 4:46 PM
To: "mailing list for gambas users"
Subject: Re: [Gambas-user] Question about collections and inheritance
> publi
Excellent!
Thans :-)
--
From: "Benoît Minisini"
Sent: Saturday, August 28, 2010 4:36 PM
To: "mailing list for gambas users"
Subject: Re: [Gambas-user] Question about collections and inheritance
>>Hi all.
>
public function _Get(id as string) as style;-)
Le 28 août 2010 23:36, Benoît Minisini a écrit :
>> Hi all.
>>
>> I'm trying to code a very basic Xml Excel Generator, and I'm workin with
>> a collection. This is my code:
>>
>> ' Gambas class file
>>
>> Inherits Collection
>>
>> Public Fu
>Hi all.
>
>I'm trying to code a very basic Xml Excel Generator, and I'm workin with
> a collection. This is my code:
>
> ' Gambas class file
>
> Inherits Collection
>
> Public Function Add($ID As String) As Style
>
> Dim $style As New Style($ID)
>
> Super.Add($style, $ID)
>
>
Hi all.
I'm trying to code a very basic Xml Excel Generator, and I'm workin with
a collection. This is my code:
' Gambas class file
Inherits Collection
Public Function Add($ID As String) As Style
Dim $style As New Style($ID)
Super.Add($style, $ID)
Return $style
End
Public Funct