Re: [Gambas-user] Still jacking with tabstrips properties and adding tabs

2008-08-13 Thread Ron Onstenk
On Wednesday 13 August 2008, M0E Lnx wrote: > I tried that, and for some reason it doesnt work here > In my head it always made sense like that, keeps giving me an new tab > but sets the .text ("New Tab") property to the one before the last > > I still dont understand why it does that > > > > O

Re: [Gambas-user] Gambas JSON Component

2008-08-13 Thread Benoit Minisini
On lundi 28 juillet 2008, Arief Bayu Purwanto wrote: > Hello, > > I would like to ask, is there someone who has a gambas JSON component? Mmm, no. Do you want to make one? :-) -- Benoit Minisini - This SF.Net email is sponso

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Doriano Blengino
Benoit Minisini ha scritto: >> ME.MoveTo(path) >> DO >> IF ME.movechild() THEN BREAK >> ME.Item.Delete >> ME.MoveTo(path) >> LOOP >> >> You should elaborate, as these are clearly bugs: stepping the source should >> always have no side effects (effect for things that depends on ti

Re: [Gambas-user] how to edit data in table view

2008-08-13 Thread Fabien Bodard
this way :) I've mad this short exemple for you... and others. But i think i need to make a complete tutorial on gridview and table view. Regards, Fabien Bodard 2008/8/11 Francesco Cisco <[EMAIL PROTECTED]>: > hello, > > how to edit data from tableview cell with double click event??? > > than

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Fabien Bodard
2008/8/13 Doriano Blengino <[EMAIL PROTECTED]>: > Fabien Bodard ha scritto: >> is this can help you ? >> >> This a simple demo off event management via objerver object that catch >> the event before object. >> > > Ok, it works. But, as you can see in my previous message and the > attached source, i

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Benoit Minisini
On mercredi 13 août 2008, Doriano Blengino wrote: > Benoit Minisini ha scritto: > >> I failed, > >> instead, in removing all the children of an item, one by one (there is a > >> clear() method, but I need to delete them one by one). The "for each ... > >> in item.children" does not work; it is not

Re: [Gambas-user] Still jacking with tabstrips properties and adding tabs

2008-08-13 Thread M0E Lnx
I tried that, and for some reason it doesnt work here In my head it always made sense like that, keeps giving me an new tab but sets the .text ("New Tab") property to the one before the last I still dont understand why it does that On Wed, Aug 13, 2008 at 10:33 AM, Ron Onstenk <[EMAIL PROTECTED

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Doriano Blengino
Benoit Minisini ha scritto: >> I failed, >> instead, in removing all the children of an item, one by one (there is a >> clear() method, but I need to delete them one by one). The "for each ... >> in item.children" does not work; it is not the first time I see similar >> anomalies, especially while

Re: [Gambas-user] Still jacking with tabstrips properties and adding tabs

2008-08-13 Thread Ron Onstenk
On Wednesday 13 August 2008, M0E Lnx wrote: > Thanks... i found a way to fix this by declaring an additional integer > variable and assigning it's value before the WITH statement. > > goes like this > > for i = 0 to array.count - 1 > idx = tabstrip1.count - 1 > > with tabstrip1 > .count = .count

Re: [Gambas-user] Still jacking with tabstrips properties and adding tabs

2008-08-13 Thread M0E Lnx
Thanks... i found a way to fix this by declaring an additional integer variable and assigning it's value before the WITH statement. goes like this for i = 0 to array.count - 1 idx = tabstrip1.count - 1 with tabstrip1 .count = .count + 1 .index = idx .text = "New Tab" end with On Tue, Aug 12,

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Doriano Blengino
Fabien Bodard ha scritto: > is this can help you ? > > This a simple demo off event management via objerver object that catch > the event before object. > Ok, it works. But, as you can see in my previous message and the attached source, it was not that my problem. In fact, I already did the s

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Benoit Minisini
On mercredi 13 août 2008, Doriano Blengino wrote: > Fabien Bodard ha scritto: > >> things missing in DirView, so I wrote my MyDirView the way I wanted. It > >> was easy at first, but then I discovered that it is difficult, or at > >> least not clear, how to move the "Current" cursor. I am not sure

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Benoit Minisini
On lundi 11 août 2008, Doriano Blengino wrote: > Hello all... > > I am writing a file manager, hybrid between FileRunner and a more > modern one. > > I started with a DirView, and soon discovered that it doesn't raise the > KeyPress event (but the IDE makes you think that). There were other > thing

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Doriano Blengino
I send the file manager I am writing, for anybody could be interested in. For now, navigation is almost complete. It misses a mean to delete bookmarks, because I wanted to delete them by right-clicking on the menu voice, but this is not possible (the mouse right button it is not discerned). No

Re: [Gambas-user] A Gambas odissey

2008-08-13 Thread Doriano Blengino
Fabien Bodard ha scritto: >> things missing in DirView, so I wrote my MyDirView the way I wanted. It >> was easy at first, but then I discovered that it is difficult, or at >> least not clear, how to move the "Current" cursor. I am not sure why, >> but it does work by setting the Selected property