[Gambas-user] Integer Bug

2008-12-11 Thread L Jumadi
I found integer bug in gambas. Please try ?54*4100 in gambas console. The result is negative, maybe because 4100 is converted to integer rather than long integer. I can solve it by use manual converting to ?54*clng(4100) but I think it should converted automatically by interpreter, isn'

[Gambas-user] SetProperty Virtual Object Dynamically

2008-11-25 Thread L Jumadi
> On samedi 22 novembre 2008, L Jumadi wrote: >> On vendredi 21 novembre 2008, L Jumadi wrote: >> > I just want to know wheter gambas can set property inside a virtual >> > collection. For Example I try to set Rows.H of a Gridview, I try >> command >> >

Re: [Gambas-user] Gambas-user Digest, Vol 30, Issue 49

2008-11-22 Thread L Jumadi
On vendredi 21 novembre 2008, L Jumadi wrote: > I just want to know wheter gambas can set property inside a virtual > collection. For Example I try to set Rows.H of a Gridview, I try command > like this: > > Object.SetProperty(Obj,"Rows.H",10) > > (Where O

[Gambas-user] How to set property dynamically

2008-11-21 Thread L Jumadi
I just want to know wheter gambas can set property inside a virtual collection. For Example I try to set Rows.H of a Gridview, I try command like this: Object.SetProperty(Obj,"Rows.H",10) (Where Obj is a Gridview, and of course "Rows.H" usually a variable) It return error. Is there any other way