[Gambas-user] Problem to play flash (svf) movie

2009-09-03 Thread Almanova Sistemi
Hello to everyone. I'm writing an application in gambas2 for play various movies files. I don't have any problems with mplayer that works very well but I can't play flash movies. I use gnash for this. My code: PUBLIC SUB Play() DIM aHandle AS NEW Pointer[] SELECT CASE

Re: [Gambas-user] Problem to play flash (svf) movie

2009-09-03 Thread Ron_1st
On Thursday 03 September 2009, Almanova Sistemi wrote: Hello to everyone. I'm writing an application in gambas2 for play various movies files. I don't have any problems with mplayer that works very well but I can't play flash movies. I use gnash for this. My code: PUBLIC SUB

[Gambas-user] Selection from a list

2009-09-03 Thread Aleksandrs Livshics
Hallo to everyone. Can anyone tell me whether a ListBox can be used to display a list with several items preselected and then to allow a user to change some part of this selection? I think mode multiple must allow to do this. However I do not understand how to preselect more than one item and how

Re: [Gambas-user] Selection from a list

2009-09-03 Thread Jorge Carrión
Try to ctrl+click or Shift+click to select more than one item. Regards 2009/9/3 Aleksandrs Livshics alek...@mpe.lv Hallo to everyone. Can anyone tell me whether a ListBox can be used to display a list with several items preselected and then to allow a user to change some part of this

Re: [Gambas-user] Selection from a list

2009-09-03 Thread Jussi Lahtinen
This code selects all items, when mode is multiple. Dim ii As Integer For ii = 0 To ListBox1.Count - 1 ListBox1[ii].Selected = True Next But I think I didn't understand your problem correctly... What do you mean by I have to make it current by specifying the index. ? How do you do that?

Re: [Gambas-user] Selection from a list

2009-09-03 Thread Dimitris Anogiatis
Alex, Setting the mode to Multiple does allow that... if for example you have 6 items on your listbox if you execute these 2 lines the 1st the 4th item will be selected listbox1[0].Selected = TRUE listbox1[3].Selected = TRUE (in Gambas 2.14 on my Debian Lenny it works as described) If the

Re: [Gambas-user] Selection from a list

2009-09-03 Thread Aleksandrs Livshics
Thanks to everyone. I just had some syntax problem which you have explained. Alex On Thursday 03 September 2009 14:50:53 Dimitris Anogiatis wrote: Alex, Setting the mode to Multiple does allow that... if for example you have 6 items on your listbox if you execute these 2 lines the 1st the

[Gambas-user] ftp Client

2009-09-03 Thread Lars Hoeger
Hello, I would like to use the ftpclient component, but there is no documentation. Has anyone some code-examples? Thanks, Lars gambas 2.15 -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day

Re: [Gambas-user] Databrowser/Gridview events?

2009-09-03 Thread Ron
Jean-Yves F. Barbier wrote: Ron a écrit : Is it possible to catch events from a DataBrowser object? Lets say PUBLIC SUB DataBrowser1_MouseUp() ... END PUBLIC SUB DataBrowser1_DblClick() ... END The docs say those are valid but I cannot get it to work, they dont seem to get

Re: [Gambas-user] DataCombo doesn't work

2009-09-03 Thread Matti
I now managed to install Gambas3 sucessfully. (Looks very good, waiting for the final version!) But the error situation about DataCombo ist the same as in Gambas2. Is there any way to see the SQL query the DataCombo produces? Would help to find out who's wrong, me or Gambas. Matti Matti

[Gambas-user] Gambas3 and database components

2009-09-03 Thread Matti
Hi, this database stuff looks very very good now. Very easy to use. Chapeau! Two questions after first testing: 1st: What happend to DataBrowser1.GridView? This property is still in the docs, but unusable. Every attempt to resize the columns, rename a column header or select a row produces an

Re: [Gambas-user] DataCombo doesn't work

2009-09-03 Thread Benoît Minisini
I now managed to install Gambas3 sucessfully. (Looks very good, waiting for the final version!) But the error situation about DataCombo ist the same as in Gambas2. Maybe if I see your code and your SQL schema, I could tell. Is there any way to see the SQL query the DataCombo produces?

Re: [Gambas-user] Gambas3 and database components

2009-09-03 Thread Benoît Minisini
Hi, this database stuff looks very very good now. Very easy to use. Chapeau! Two questions after first testing: 1st: What happend to DataBrowser1.GridView? This property is still in the docs, but unusable. Every attempt to resize the columns, rename a column header or select a row

Re: [Gambas-user] DataCombo doesn't work

2009-09-03 Thread Matti
Benoît Minisini schrieb: DB.Debug = TRUE, and all SQL request sent to the database driver are print on the standard error. DB.Debug = TRUE is fine, but doesn't display this error. Try this tiny silly test file (never did tar.gz before, hope it works) If you can use it: Set these

Re: [Gambas-user] Gambas3 and database components

2009-09-03 Thread Matti
Benoît Minisini schrieb: The GridView property has been replaced by the View property (the view may not be a GridView after all). ok, thanks, works. This is not done yet. ok, will wait. This a problem with the IDE logic: the Connection object is read-only, but not the data