Re: [Gambas-user] Video Player example

2009-10-26 Thread Ron_1st
On Monday 26 October 2009, Hartmut Eilers wrote: > Hallo List, > > > >> for my Video project I need a video player which plays a video > > >> in a unvisible DrawingArea where I can grab a picture contolled > > >> by a timer. I want to show the grabbed image in a smaller preview > > >> window where

Re: [Gambas-user] sort multidimensional arrays

2009-10-26 Thread Matti
Benoît Minisini schrieb: > A workaround is using a Object[], and storing each line of your table inside > by using a dedicated class, or another array. Hmm. Sounds good, but I can't imagine how to store "each line of your table" into an Object[] Could you give an example? ---

Re: [Gambas-user] Video Player example

2009-10-26 Thread Hartmut Eilers
Hallo List, > >> for my Video project I need a video player which plays a video > >> in a unvisible DrawingArea where I can grab a picture contolled > >> by a timer. I want to show the grabbed image in a smaller preview > >> window where one can apply effects. When pressing a button all > >>effect

Re: [Gambas-user] Documentation of FOR EACH

2009-10-26 Thread Jussi Lahtinen
OK. Thanks! Jussi 2009/10/26 Benoît Minisini : >> http://gambasdoc.org/help/lang/foreach >> >> "The order of the enumeration in not necessarily predictable. See the >> documentation of each enumerable class for more details on that." >> >>  I can't find any else information on that topic. >>  Wh

Re: [Gambas-user] Documentation of FOR EACH

2009-10-26 Thread Benoît Minisini
> http://gambasdoc.org/help/lang/foreach > > "The order of the enumeration in not necessarily predictable. See the > documentation of each enumerable class for more details on that." > > I can't find any else information on that topic. > What does that mean? > > Jussi > It means that sometim

[Gambas-user] Documentation of FOR EACH

2009-10-26 Thread Jussi Lahtinen
http://gambasdoc.org/help/lang/foreach "The order of the enumeration in not necessarily predictable. See the documentation of each enumerable class for more details on that." I can't find any else information on that topic. What does that mean? Jussi --

Re: [Gambas-user] Set text to a spinbox

2009-10-26 Thread Johny Provoost
Just fill in the value property. *Vriendelijke Groeten* *Johny Provoost* *mailto: johny.provo...@skynet.be * *mailto: johny.provo...@gmail.com * *Website:* *http://www.johnyprovoost.net* Dav

Re: [Gambas-user] Set text to a spinbox

2009-10-26 Thread Benoît Minisini
> Hi all, How do I write text to a spinbox like the pic shown in the help. > See the link: http://gambasdoc.org/help/comp/gb.qt/spinbox > > Regards > > > -- > David > Arg. The help picture is false, you cannot do that. You must put a label on the right on the spinbox instead. Regards, --

[Gambas-user] Set text to a spinbox

2009-10-26 Thread David Villalobos Cambronero
Hi all, How do I write text to a spinbox like the pic shown in the help. See the link: http://gambasdoc.org/help/comp/gb.qt/spinbox Regards -- David -- Come build with us! The BlackBerry(R) Developer Confere

Re: [Gambas-user] Feature Request

2009-10-26 Thread Benoît Minisini
> Benoit, > > when you have a project open you can open a second one in a new window > without closing the current one (by clicking "open in new window") > > When you want to open a new project next to the current one, you don't > have this option, even more drastic, it closes your current one wi

Re: [Gambas-user] sort multidimensional arrays

2009-10-26 Thread Benoît Minisini
> Is there a way to sort an array that has more than one dimension by telling > Gambas on which field the sorting shoiuld be done? > > For example, if I have the array > Max, 14 > Anna, 8 > Fabien, 7 > > I would expect the result of sorting by the first field to be > Anna, 8 > Fabien, 7 > Max, 1

Re: [Gambas-user] properites> options > get version from program ? how??

2009-10-26 Thread Benoît Minisini
> properites> options > get version from program ? how?? > > Noticed this in the properites tab - ?how does this work?? > > Regards > > richard > You put there a shell command, and the output of this command is used as version string. Consequently, the output of the command must have the fol

[Gambas-user] Feature Request

2009-10-26 Thread Ron
Benoit, when you have a project open you can open a second one in a new window without closing the current one (by clicking "open in new window") When you want to open a new project next to the current one, you don't have this option, even more drastic, it closes your current one without aski

[Gambas-user] Ideas to gambas IDE (and inform have one bug too)

2009-10-26 Thread Wellington de Souza Pinto
Hi Benoit! The bug is when you use horizontal split code. If you type any string Ex: sVar = "" The editor show: sVar = "" "" and is impossible remove only if you return to single mode. My idea to IDE is, if possible, split form and code simultaneous. Reguards, PS: My english is not very well.

Re: [Gambas-user] gb.chart

2009-10-26 Thread Fabien Bodard
2009/10/26 Andrea Bertini : > the help-code given doesn't work with release 2.16. > > Messages: > = > 'the values count must be up then 1' > 'no current device' > > Code: > = > DIM mychart AS NEW Chart (not writte in the help but inserted) > mychart.Count = 3 > mychart[0].Values = [1.0,

Re: [Gambas-user] Tableview question

2009-10-26 Thread Fabien Bodard
2009/10/24 Werner : > richard terry wrote: >> I've need to use the table view to allow user to edit/add new cells >> >> Despite reading Doc's and looking at the  examples in the IDe I'm no closer >> to >> getting the concept of how the thing works, so I wonder if anyone could >> explain its use in

[Gambas-user] properites> options > get version from program ? how??

2009-10-26 Thread richard terry
properites> options > get version from program ? how?? Noticed this in the properites tab - ?how does this work?? Regards richard -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only devel

Re: [Gambas-user] Tableview question

2009-10-26 Thread Werner
richard terry wrote: > I've need to use the table view to allow user to edit/add new cells > > Despite reading Doc's and looking at the examples in the IDe I'm no closer > to > getting the concept of how the thing works, so I wonder if anyone could > explain its use in simple terms and show me