Re: [Gambas-user] Bug in WaveGenerator 3.5.90

2014-02-11 Thread Dominique Michel
Le Wed, 12 Feb 2014 02:57:10 +0200, Jussi Lahtinen a écrit : > OK, now it works. I'm getting these messages: > Cannot connect to server socket err = No such file or directory > Cannot connect to server request channel > jack server is not running or cannot be started > > I really don't have jack

Re: [Gambas-user] Bug in WaveGenerator 3.5.90

2014-02-11 Thread Jussi Lahtinen
OK, now it works. I'm getting these messages: Cannot connect to server socket err = No such file or directory Cannot connect to server request channel jack server is not running or cannot be started I really don't have jack installed, why it looks for it? Jussi On Wed, Feb 12, 2014 at 2:43 AM,

Re: [Gambas-user] Bug in WaveGenerator 3.5.90

2014-02-11 Thread Benoît Minisini
Le 12/02/2014 01:37, Jussi Lahtinen a écrit : > See attached pic. No further error messages, or warnings. > > Gambas 3 rev 6147 @ Xubuntu 13.10 64bit > > Jussi > Replace "alsasink" with "autoaudiosink". I will commit that fix later. -- Benoît Minisini ---

Re: [Gambas-user] _Get special sub

2014-02-11 Thread Benoît Minisini
Le 11/02/2014 23:44, Fabien Bodard a écrit : > Why can't we declare two _Get function in a class ? > > One in static the other in instance ? > > > > STATIC PUBLIC FUNCTION _Get[sValue as string] as MySelf >hMySelf as new MySelf > >return MySelf > END > > > PUBLIC FUNCTION _Get[Index] as _My

[Gambas-user] _Get special sub

2014-02-11 Thread Fabien Bodard
Why can't we declare two _Get function in a class ? One in static the other in instance ? STATIC PUBLIC FUNCTION _Get[sValue as string] as MySelf hMySelf as new MySelf return MySelf END PUBLIC FUNCTION _Get[Index] as _MySubClass return aSubClass[index] END Logically i must be possible

Re: [Gambas-user] Continued difficulties using gb.report

2014-02-11 Thread Fabien Bodard
I will do :-)... Just one or t is not conventinalwo thingsto add and then i begin to do many tutos. Yes the way to do reports is not usual. You must to understant the gambas form layout to understand how report work ... plus some specific thing to page layout 2014-02-11 17:38 GMT+01:00 Marty McG

[Gambas-user] gb.gsl: pseudo-complex Vectors make different cross product

2014-02-11 Thread Tobias Boege
Hi Benoit, a strange thing this time. Using gb.gsl, we noticed that there is a way to compute the cross product of two Vector objects in "complex" mode - but without any complex numbers in them - which yields a different result than other methods to compute it. Attached is a project that shows wha

Re: [Gambas-user] Continued difficulties using gb.report

2014-02-11 Thread Charlie Reinl
Am Dienstag, den 11.02.2014, 11:38 -0500 schrieb Marty McGlensey: > Hi, > > > > A few posts ago I indicated that I was just starting to use gb.report. I > wrote a basic report to show ten names. I got it working with help from > Fabien. I could not send him the project as my email client would

[Gambas-user] Continued difficulties using gb.report

2014-02-11 Thread Marty McGlensey
Hi, A few posts ago I indicated that I was just starting to use gb.report. I wrote a basic report to show ten names. I got it working with help from Fabien. I could not send him the project as my email client would not attach that many files. Well I know that I need a ReportHBox, a ReportVBox a

Re: [Gambas-user] TextArea Control - Tab Key

2014-02-11 Thread Benoît Minisini
Le 11/02/2014 16:04, Nigel Verity a écrit : > > > > Hi > > I have some text area controls which I would like to behave like text > boxes, i.e hitting the tab key moves the cursor to the next control. > > I can write some long-hand code to monitor for chr(9) on the > "keypress" event, but is there a

[Gambas-user] TextArea Control - Tab Key

2014-02-11 Thread Nigel Verity
Hi I have some text area controls which I would like to behave like text boxes, i.e hitting the tab key moves the cursor to the next control. I can write some long-hand code to monitor for chr(9) on the "keypress" event, but is there a tidier way of achieving this - an obscure property perh