Re: [Gambas-user] FileChooser Refresh and Events?

2010-01-05 Thread JLichter
Great! Many Thanks that's right :-) Jo Am Dienstag, den 05.01.2010, 23:43 +0100 schrieb Fabien Bodard: > this is true ... it's a miss :) ... only fileview and dirview have > reload method ! > > > > But as workaround you can do that : > > > DIM hObject AS Object > hObject = FileChooser1.c

Re: [Gambas-user] FileChooser Refresh and Events?

2010-01-05 Thread Fabien Bodard
this is true ... it's a miss :) ... only fileview and dirview have reload method ! But as workaround you can do that : DIM hObject AS Object hObject = FileChooser1.children[0] hObject.DirView.Reload 2010/1/5 JLichter : > Dear Benoît Minisini, > > Thanks for your fast answer. > > But th

Re: [Gambas-user] FileChooser Refresh and Events?

2010-01-05 Thread JLichter
Dear Benoît Minisini, Thanks for your fast answer. But the FileChooser hasn't a reload method. Link: http://gambasdoc.org/help/comp/gb.form/filechooser Regards Jo at 05.01.2010, 20:39 +0100 wrote Benoît Minisini: > > Dear All! > > > > I am using Ubuntu 9.10 with Gambas 2.13 and 2.18. > > H

Re: [Gambas-user] FileChooser Refresh and Events?

2010-01-05 Thread Benoît Minisini
> Dear All! > > I am using Ubuntu 9.10 with Gambas 2.13 and 2.18. > How can I refresh the FileChooser? > > Unfortunately FileChooser1.Refresh does not work and I trick it with: > > FileChooser1.ShowDetailed = FALSE > FileChooser1.ShowDetailed = TRUE > > > Also the event KeyPress and

[Gambas-user] FileChooser Refresh and Events?

2010-01-05 Thread JLichter
Dear All! I am using Ubuntu 9.10 with Gambas 2.13 and 2.18. How can I refresh the FileChooser? Unfortunately FileChooser1.Refresh does not work and I trick it with: FileChooser1.ShowDetailed = FALSE FileChooser1.ShowDetailed = TRUE Also the event KeyPress and MouseDown not work. Th