Re: [Gambas-user] Question about collections and inheritance

2010-08-30 Thread Lord Quo
:-) 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

Re: [Gambas-user] Question about collections and inheritance

2010-08-30 Thread Lord Quo
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. >

Re: [Gambas-user] Question about collections and inheritance

2010-08-28 Thread Fabien Bodard
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

Re: [Gambas-user] Question about collections and inheritance

2010-08-28 Thread Benoît Minisini
>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) > >

[Gambas-user] Question about collections and inheritance

2010-08-27 Thread Daniel Rojas
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