Re: [Gambas-user] Elusive Gambas3 crashing bug

2010-11-16 Thread Benoît Minisini
> But then I don't understand why "Finally" exist... > At least that test function is equal without it. > Is there proper usage for it, or is it for historical etc reasons? > Finally exists so that you can have some code that is always executed at the end of the function, even if there was an er

Re: [Gambas-user] WAIT command questions.

2010-11-16 Thread Benoît Minisini
> In manual for WAIT, it is said that > > If Delay is not specified, the functions processes every events and > returns immediately. In this case, keyboard and mouse events are > ignored. > > i dont understand this. > > What does it mean "the functions processes every event" ? > Which functions?

Re: [Gambas-user] Result object

2010-11-16 Thread Charlie Reinl
Am Dienstag, den 16.11.2010, 21:44 +0100 schrieb tobias: > Charlie Reinl schrieb: > > Am Montag, den 15.11.2010, 19:56 +0100 schrieb tobias: > >> hi, > >> i have again another question about the result object... > >> when i do: > >> hResult = hConnection.Edit("table") > >> > >> i get a read/write r

Re: [Gambas-user] Class destructor

2010-11-16 Thread Ricardo Díaz Martín
Thanks a lot, Fabien 2010/11/16 Fabien Bodard > Just > > Public sub _free() > > end > > and at the same level that _init > > public sub _exit() > > > > -- > Fabien Bodard > > > -- > Beautiful is writing same markup. Int

Re: [Gambas-user] Result object

2010-11-16 Thread tobias
Charlie Reinl schrieb: > Am Montag, den 15.11.2010, 19:56 +0100 schrieb tobias: >> hi, >> i have again another question about the result object... >> when i do: >> hResult = hConnection.Edit("table") >> >> i get a read/write result, i can move through the elements and edit >> their fields, e.g. >>

[Gambas-user] WAIT command questions.

2010-11-16 Thread Demosthenes Koptsis
In manual for WAIT, it is said that If Delay is not specified, the functions processes every events and returns immediately. In this case, keyboard and mouse events are ignored. i dont understand this. What does it mean "the functions processes every event" ? Which functions? We talk about eve

Re: [Gambas-user] Class destructor

2010-11-16 Thread Fabien Bodard
Just Public sub _free() end and at the same level that _init public sub _exit() -- Fabien Bodard -- Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, a

[Gambas-user] Class destructor

2010-11-16 Thread Ricardo Díaz Martín
Hi, Is possible in gambas3 set a sub that will be fire when you set the object = null? I got a gambas class for loading big quantity of data in a gridview in dynamic mode (using the Data event). In this class, I got some "New" sentences that be manually cleaned by a public sub. I want to simply s

Re: [Gambas-user] Elusive Gambas3 crashing bug

2010-11-16 Thread Jussi Lahtinen
But then I don't understand why "Finally" exist... At least that test function is equal without it. Is there proper usage for it, or is it for historical etc reasons? BTW. You didn't get errors from any date commands? Nor crash from line 1038 of mTest? I'll send logs about that crash later. Jussi

Re: [Gambas-user] Gambas 3 Grid/Table question

2010-11-16 Thread Rolf-Werner Eilert
Am 15.11.2010 08:58, schrieb Rolf-Werner Eilert: > Am 13.11.2010 02:01, schrieb Benoît Minisini: >>> Sorry, I was kinda tired this morning :-) >>> >>> There is a linewrap in the Gridview even with Gambas 2, but it is a >>> default (at least I have not yet found a way to deactivate it) and it >>> do

Re: [Gambas-user] draw graph gambas2

2010-11-16 Thread richard terry
On Tuesday 16 November 2010 19:18:17 wally wrote: > Hi, > > i need to draw a graph with nonlinear data from a measurement device. > Doing draw.line/draw.polyline gives pretty ugly results. > Is there a way to draw to drawarea with smooth lines, bezier or curve_to as > in cairo with Gambas2 ? In g

[Gambas-user] draw graph gambas2

2010-11-16 Thread wally
Hi, i need to draw a graph with nonlinear data from a measurement device. Doing draw.line/draw.polyline gives pretty ugly results. Is there a way to draw to drawarea with smooth lines, bezier or curve_to as in cairo with Gambas2 ? In general its an YT-Plotter / Recorder wally ---