Re: [Gambas-user] Gambas bug?

2012-02-10 Thread GMail
On Sat, 2012-02-11 at 18:06 +1030, Bruce Bruen wrote: > On Fri, 2012-02-10 at 21:59 -0300, Fabián Flores Vadell wrote: > > 2012/2/10 Emil Lenngren > > > > > Interesting, I have a similar problem, perhaps the same but maybe > slightly different. > > I have a base class that is CREATE PRIVATE, i

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Bruce Bruen
On Fri, 2012-02-10 at 21:59 -0300, Fabián Flores Vadell wrote: > 2012/2/10 Emil Lenngren > Interesting, I have a similar problem, perhaps the same but maybe slightly different. I have a base class that is CREATE PRIVATE, it cannot be instantiated directly by a client application. It contains

Re: [Gambas-user] extern library

2012-02-10 Thread Wally
On Friday, February 10, 2012 22:54:58 Benoît Minisini wrote: > Le 05/02/2012 18:42, Wally a écrit : > > talking about Gambas 3: > > > > When i place my library to /usr/local/lib and run ldconfig it works and > > my_gb3_project can find the lib and its functions. > > When i put it into my_gb3_proje

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 Emil Lenngren > Ok, I understand your issue. But unfortunately, I don't know any good way > how to do it in Gambas. > Well, that's what it is solve this problem by a single method that make a dinamic call. > In C++ there are private inheritance that solves the problem, but Gambas > o

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Emil Lenngren
Ok, I understand your issue. But unfortunately, I don't know any good way how to do it in Gambas. In C++ there are private inheritance that solves the problem, but Gambas only has public inheritance. Maybe Benoit can find out some way how to inherit only "some" of the symbols from a base class, if

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 Emil Lenngren > So what you want is to extend the array class with some extra methods? > Just use > Inherits Person[] > in the PersonList class ;) > Did you read the code and comments? Not at all. I don't want use inheritance because I won't all methods and properties from Array[] in

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Emil Lenngren
So what you want is to extend the array class with some extra methods? Just use Inherits Person[] in the PersonList class ;) /Emil 2012/2/10 Fabián Flores Vadell > 2012/2/10 Emil Lenngren > > > Can you give some examples how you mean? > > What do you need wrappers for? > > I don't think I unde

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 Emil Lenngren > Can you give some examples how you mean? > What do you need wrappers for? > I don't think I understand fully what you mean, but it seems interesting :) > > /Emil > I would like to show you an example, but I can't. If I did, I would have to kill you. :P There is a

Re: [Gambas-user] extern library

2012-02-10 Thread Benoît Minisini
Le 05/02/2012 18:42, Wally a écrit : > talking about Gambas 3: > > When i place my library to /usr/local/lib and run ldconfig it works and > my_gb3_project can find the lib and its functions. > When i put it into my_gb3_project folder the library can not be found. > Where to place the library ganb

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Emil Lenngren
Can you give some examples how you mean? What do you need wrappers for? I don't think I understand fully what you mean, but it seems interesting :) /Emil 2012/2/10 Fabián Flores Vadell > 2012/2/10 Fabián Flores Vadell > > > 2012/2/10 Emil Lenngren > > > >> Did the Object solution not solve yo

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 Fabián Flores Vadell > 2012/2/10 Emil Lenngren > >> Did the Object solution not solve your problem? It should work in all >> cases >> when the name of the function/property is the same at all calls/property >> readings. >> > > II want to write just one method that allow me to call what

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 Emil Lenngren > Did the Object solution not solve your problem? It should work in all cases > when the name of the function/property is the same at all calls/property > readings. > II want to write just one method that allow me to call whatever method I could need from one collaborator

Re: [Gambas-user] Help for Image and Picture Colors

2012-02-10 Thread tobi
On Fri, 10 Feb 2012, Benoît Minisini wrote: > Le 06/02/2012 21:19, tobias a écrit : > > hi, > > > > Benoît Minisini wrote: > >> Le 04/02/2012 01:19, tobias a écrit : > >>> On 04.02.2012 01:12, tobias wrote: > Hi, > > I really need help. There's a lot of work with colors in Images an

Re: [Gambas-user] Help for Image and Picture Colors

2012-02-10 Thread Benoît Minisini
Le 06/02/2012 21:19, tobias a écrit : > hi, > > Benoît Minisini wrote: >> Le 04/02/2012 01:19, tobias a écrit : >>> On 04.02.2012 01:12, tobias wrote: Hi, I really need help. There's a lot of work with colors in Images and Pictures in a project and between these classes. This is

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 Jussi Lahtinen > You can check whether it is property or method. > > Dim hCls As Class = Object.Class(["John", "Peter"]) > > If hCls["Count"].Kind = Class.Method Then > Yes, I figured out. Thanks Jussi -- Virtu

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Emil Lenngren
Did the Object solution not solve your problem? It should work in all cases when the name of the function/property is the same at all calls/property readings. If you use different symbol names each time, maybe you can use something like this: Try Return Object.GetProperty(object, name) Catch Ret

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Jussi Lahtinen
You can check whether it is property or method. Dim hCls As Class = Object.Class(["John", "Peter"]) If hCls["Count"].Kind = Class.Method Then ... Jussi 2012/2/10 Fabián Flores Vadell > 2012/2/10 Emil Lenngren > > > You probably get the error because Count is a property and not a meth

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 Emil Lenngren > You probably get the error because Count is a property and not a method. > > There is a Object.GetProperty method you can use instead ;) > > Print Object.GetProperty(["John", "Peter"], "Count") > Thanks Emil. It seems to me like the encapsulation is broken because I ne

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Emil Lenngren
You probably get the error because Count is a property and not a method. There is a Object.GetProperty method you can use instead ;) Print Object.GetProperty(["John", "Peter"], "Count") /Emil 2012/2/10 Fabián Flores Vadell > Hi. > > When I execute this: > > Print Object.Call(["John", "Peter"]

[Gambas-user] Issue 209 in gambas: Inheritance and translatable constant strings does not work

2012-02-10 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 209 by emil.len...@gmail.com: Inheritance and translatable constant strings does not work http://code.google.com/p/gambas/issues/detail?id=209 1) Describe the problem. Le

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Emil Lenngren
Can't you just store the array in an "Object", then each calls are dispatched? Dim o As Object o = the_array o.Add(whatever) /Emil 2012/2/10 Fabián Flores Vadell > 2012/2/10 nando > > > First, what are you trying to do?-- > > > > > I'm trying to find a design pattern that allows me to use the

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
2012/2/10 nando > First, what are you trying to do?-- > I'm trying to find a design pattern that allows me to use the introspective features of Gambas to avoid the boring work consisting in write (in a class) the signatures of some methods that belong to one of its collaborators (that I need to

Re: [Gambas-user] Gambas bug?

2012-02-10 Thread nando
First, what are you trying to do? -- Original Message --- From: Fabián Flores Vadell To: mailing list for gambas users Sent: Fri, 10 Feb 2012 16:39:12 -0300 Subject: [Gambas-user] Gambas bug? > Hi. > > When I execute this: > > Print Object.Call(["John", "Peter"], "Count") >

[Gambas-user] Gambas bug?

2012-02-10 Thread Fabián Flores Vadell
Hi. When I execute this: Print Object.Call(["John", "Peter"], "Count") I get an error like this: "Count Symbol unknown in the String []" Thanks in advance. -- Fabián Flores Vadell www.comoprogramarcongambas.blogspot.com www.speedbooksargentina.blogspot.com ---

Re: [Gambas-user] Issue 207 in gambas: Event Save get error at DataBrowser

2012-02-10 Thread gambas
Comment #1 on issue 207 by john.aaron.r...@gmail.com: Event Save get error at DataBrowser http://code.google.com/p/gambas/issues/detail?id=207 When I try to Save after adding/changing rows , I get a dialog box saying 'Connection not opened' with OK button only (and clicking OK does not resu

Re: [Gambas-user] DataSource & DataBrowser problem

2012-02-10 Thread Беспалов Алексей
My DataBrowser control saved automatic, you can not press save. 10.02.2012, 16:44, "John Rose" : > As I previously said, when I add a new row (by first clicking the New > button in  my DataBrowser control) / change data displayed in my > DataBrowser control and then click the save button (in my Da

[Gambas-user] DataSource & DataBrowser problem

2012-02-10 Thread John Rose
As I previously said, when I add a new row (by first clicking the New button in my DataBrowser control) / change data displayed in my DataBrowser control and then click the save button (in my DataBrowser control), it comes up with a dialog box saying 'Connection not opened' with OK button only (an