Re: [Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread nando
set the logging level in the configuration file higher than zero -- Original Message --- From: fvegaf To: gambas-user@lists.sourceforge.net Sent: Tue, 30 Aug 2011 11:12:18 -0700 (PDT) Subject: [Gambas-user] Gambas 2 and mysql bin-log > I turned on the mysql binary log, but my

Re: [Gambas-user] gb3: using string as stream for sequential write operations of arbitrary datatypes

2011-08-30 Thread nando
What type of connection are you using ? -- Original Message --- From: Kevin Fishburne To: gambas-user@lists.sourceforge.net Sent: Tue, 30 Aug 2011 05:31:52 -0400 Subject: Re: [Gambas-user] gb3: using string as stream for sequential write operations of arbitrary datatypes > On 0

Re: [Gambas-user] Fixing bug tracker issue 78

2011-08-30 Thread Bruce Bruen
On Wed, 2011-08-31 at 03:13 +0200, Benoît Minisini wrote: > > > > Sorry, I'm really panicky, I meant method overriding not polymorphism. > > Bruce > > This change only makes the interpreter raise an error instead of eventually > segfaulting, by preventing something that is forbidden : changing

Re: [Gambas-user] Issue 93 in gambas: Error backtrace not always correct

2011-08-30 Thread gambas
Updates: Status: Fixed Comment #2 on issue 93 by benoit.m...@gmail.com: Error backtrace not always correct http://code.google.com/p/gambas/issues/detail?id=93 It seems that I have succeeded. :-) Error.Backtrace has been fixed in revision #4066, without too much penalty on interpreter

Re: [Gambas-user] Something ain't right. Still trying to control VLC.

2011-08-30 Thread Benoît Minisini
> Please forgive my rambling here... but if anyone can explain these > results I'd really like to hear from them. > > Consistently getting Inconsistent results... which is consistency.. > ARRR! > > Send command strings to the stream that is a virtual console and maybe > they will work, ma

[Gambas-user] Something ain't right. Still trying to control VLC.

2011-08-30 Thread Stephen Bungay
Please forgive my rambling here... but if anyone can explain these results I'd really like to hear from them. Consistently getting Inconsistent results... which is consistency.. ARRR! Send command strings to the stream that is a virtual console and maybe they will work, maybe they won'

Re: [Gambas-user] Issue 93 in gambas: Error backtrace not always correct

2011-08-30 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 93 by benoit.m...@gmail.com: Error backtrace not always correct http://code.google.com/p/gambas/issues/detail?id=93 The Error.Backtrace cannot be actually be implemented reliably *and* efficiently. I

Re: [Gambas-user] Fixing bug tracker issue 78

2011-08-30 Thread Benoît Minisini
> > Sorry, I'm really panicky, I meant method overriding not polymorphism. > Bruce This change only makes the interpreter raise an error instead of eventually segfaulting, by preventing something that is forbidden : changing the signature of a method through inheritance. That has nothing to do

Re: [Gambas-user] Fixing bug tracker issue 78

2011-08-30 Thread Bruce Bruen
On Wed, 2011-08-31 at 10:29 +0930, Bruce Bruen wrote: > On Wed, 2011-08-31 at 01:56 +0200, Benoît Minisini wrote: > > > Hi, > > > > To finish fixing issue #78, in revision #4064, I have added a new check in > > the > > Gambas inheritance mechanism. > > > > Now, a class method can override a m

Re: [Gambas-user] Fixing bug tracker issue 78

2011-08-30 Thread Benoît Minisini
> On Wed, 2011-08-31 at 01:56 +0200, Benoît Minisini wrote: > > Hi, > > > > To finish fixing issue #78, in revision #4064, I have added a new check > > in the Gambas inheritance mechanism. > > > > Now, a class method can override a method of a parent class only if they > > have the same signature

Re: [Gambas-user] Fixing bug tracker issue 78

2011-08-30 Thread Bruce Bruen
On Wed, 2011-08-31 at 01:56 +0200, Benoît Minisini wrote: > Hi, > > To finish fixing issue #78, in revision #4064, I have added a new check in > the > Gambas inheritance mechanism. > > Now, a class method can override a method of a parent class only if they have > the same signature. > > The

Re: [Gambas-user] Issue 78 in gambas: Illegal optimization / May a method's return value type in a derived class be different from the base class?

2011-08-30 Thread gambas
Updates: Status: Fixed Comment #5 on issue 78 by benoit.m...@gmail.com: Illegal optimization / May a method's return value type in a derived class be different from the base class? http://code.google.com/p/gambas/issues/detail?id=78 Fixed in revision #4064. Now, a class method can ov

[Gambas-user] Fixing bug tracker issue 78

2011-08-30 Thread Benoît Minisini
Hi, To finish fixing issue #78, in revision #4064, I have added a new check in the Gambas inheritance mechanism. Now, a class method can override a method of a parent class only if they have the same signature. The check is not done for the "_new" special method, as the inheritance of _new is

Re: [Gambas-user] keyboard navigation of combobox

2011-08-30 Thread Bruce Bruen
On Tue, 2011-08-30 at 15:37 +0200, Benoît Minisini wrote: > > > Can you be more precise? Which dialog box or window you are talking about > > > for example... > > > > Preferences in particular, but the Project Properties tabs sometimes > > confuse me, especially the Environment page. If you flic

Re: [Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread fvegaf
Thanks for your help, Setting the DB.Debug=True help me to figure it out. Turns that cQuery = " Insert into test.StatusCodes() values (19, '19')" does not save in the sentence in the bin-log and db2.name="test" cQuery = " Insert into StatusCodes() values (19, '19')" saves in the sentence in

[Gambas-user] Issue 93 in gambas: Error backtrace not always correct

2011-08-30 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 93 by emil.len...@gmail.com: Error backtrace not always correct http://code.google.com/p/gambas/issues/detail?id=93 1) Describe the problem. The backtrace that can be obtai

Re: [Gambas-user] Error in example: WebCam 1.0.4

2011-08-30 Thread Benoît Minisini
> MyWebCam example says (and works); "Device is V4L2!" and WebCam example > doesn't find it at all..? > Still something wrong... > > Jussi > Look in the code: apparently WebCam scans for /dev/videoX with X between 0 and 20. Maybe your device name does not look like that... -- Benoît Minisini

Re: [Gambas-user] Error in example: WebCam 1.0.4

2011-08-30 Thread Jussi Lahtinen
MyWebCam example says (and works); "Device is V4L2!" and WebCam example doesn't find it at all..? Still something wrong... Jussi 2011/8/30 Benoît Minisini > > 'Form.Close' is incorrectly overridden in class 'FDevice' > > > > Gambas 3 rev 4052 @ Ubuntu 11.04 64bit > > > > > > Jussi > > Fixed i

Re: [Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread Benoît Minisini
> I need that the "insert" statement to be logged in the binary log. > I have no idea why it is not logged. I didn't know there was a "mysql binary log", and I don't know how it works. Try to set 'DB.Debug = True' to see what SQL queries are sent to the SQL client library. Regards, -- Benoî

Re: [Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread fvegaf
I need that the "insert" statement to be logged in the binary log. fvegaf wrote: > > I turned on the mysql binary log, but my gambas inserts, updates and > deletes are not showing in the binary log (MySQL) > > Example: > > strQ = "Insert into tabletest(field1) values('test')" > rs = db.Exec

Re: [Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread Benoît Minisini
> I turned on the mysql binary log, but my gambas inserts, updates and > deletes are not showing in the binary log (MySQL) > > Example: > > strQ = "Insert into tabletest(field1) values('test')" > rs = db.Exec(strQ) > > > I tried the following, and works, but it implies that I will need to > rew

[Gambas-user] Gambas 2 and mysql bin-log

2011-08-30 Thread fvegaf
I turned on the mysql binary log, but my gambas inserts, updates and deletes are not showing in the binary log (MySQL) Example: strQ = "Insert into tabletest(field1) values('test')" rs = db.Exec(strQ) I tried the following, and works, but it implies that I will need to rewrite my entire applic

Re: [Gambas-user] gb3: using string as stream for sequential write operations of arbitrary datatypes

2011-08-30 Thread tobias
hi, > On 08/30/2011 04:35 AM, Bruce Bruen wrote: >> On Tue, 2011-08-30 at 01:52 -0400, Kevin Fishburne wrote: >>> When a transaction isn't received and I need to resend it, I'd like >>> to >>> be able to refer to the transaction history and resend the data >>> (QueueOut[id].Data) without having to

Re: [Gambas-user] keyboard navigation of combobox

2011-08-30 Thread Benoît Minisini
> > Can you be more precise? Which dialog box or window you are talking about > > for example... > > Preferences in particular, but the Project Properties tabs sometimes > confuse me, especially the Environment page. If you flick between a few > of the Project Properties tabs, make a new Argument

Re: [Gambas-user] keyboard navigation of combobox

2011-08-30 Thread Bruce Bruen
On Tue, 2011-08-30 at 14:36 +0200, Benoît Minisini wrote: > > On Tue, 2011-08-30 at 20:53 +0930, Bruce Bruen wrote: > > > stuff about space bars > > > > But I want to ask a question. There appears to me these days that I'm > > getting a psychological dislike of buttonless pop-ups. In many > > a

Re: [Gambas-user] Gambas3 crash (QAbstractScrollArea::viewport)

2011-08-30 Thread Benoît Minisini
> Wow, you're really fast :-) > > Yes, You're right. With oxygen it works fine. That's very strange. All > Qt4 programs I use work fine with bespin. > When I use bespin, gambas3 does not crash. Can you export your configuration of bespin and send it to me? -- Benoît Minisini

Re: [Gambas-user] keyboard navigation of combobox

2011-08-30 Thread Benoît Minisini
> On Tue, 2011-08-30 at 20:53 +0930, Bruce Bruen wrote: > > stuff about space bars > > But I want to ask a question. There appears to me these days that I'm > getting a psychological dislike of buttonless pop-ups. In many > application these days you are presented with a pop-up that asks a > rea

Re: [Gambas-user] keyboard navigation of combobox

2011-08-30 Thread Bruce Bruen
On Tue, 2011-08-30 at 20:53 +0930, Bruce Bruen wrote: > stuff about space bars But I want to ask a question. There appears to me these days that I'm getting a psychological dislike of buttonless pop-ups. In many application these days you are presented with a pop-up that asks a reasonable que

Re: [Gambas-user] keyboard navigation of combobox

2011-08-30 Thread Bruce Bruen
On Tue, 2011-08-30 at 20:52 +1000, richard terry wrote: > Hi list, > > Question: > > Ages ago when a combobox had focus, hitting the space bar would cause the > combo contents to drop down as if one had clicked on the combo down arrow. > > This hasn't seemed to worked for a long time -is ther

[Gambas-user] keyboard navigation of combobox

2011-08-30 Thread richard terry
Hi list, Question: Ages ago when a combobox had focus, hitting the space bar would cause the combo contents to drop down as if one had clicked on the combo down arrow. This hasn't seemed to worked for a long time -is there another key combination? Regards richard --

Re: [Gambas-user] Issue 88 in gambas: G3 Help Browser - General Navigation 1 : External links

2011-08-30 Thread gambas
Comment #5 on issue 88 by benoit.m...@gmail.com: G3 Help Browser - General Navigation 1 : External links http://code.google.com/p/gambas/issues/detail?id=88 OK, I see. I have clicked on the button on the left, not on the link on the right! ---

Re: [Gambas-user] Issue 88 in gambas: G3 Help Browser - General Navigation 1 : External links

2011-08-30 Thread gambas
Comment #6 on issue 88 by benoit.m...@gmail.com: G3 Help Browser - General Navigation 1 : External links http://code.google.com/p/gambas/issues/detail?id=88 Fixed! -- Special Offer -- Download ArcSight Logger for FREE

Re: [Gambas-user] Error in example: WebCam 1.0.4

2011-08-30 Thread Benoît Minisini
> 'Form.Close' is incorrectly overridden in class 'FDevice' > > Gambas 3 rev 4052 @ Ubuntu 11.04 64bit > > > Jussi Fixed in revision #4057. Regards, -- Benoît Minisini -- Special Offer -- Download ArcSight Logger fo

Re: [Gambas-user] gb3: using string as stream for sequential write operations of arbitrary datatypes

2011-08-30 Thread Kevin Fishburne
On 08/30/2011 04:35 AM, Bruce Bruen wrote: > On Tue, 2011-08-30 at 01:52 -0400, Kevin Fishburne wrote: >> When a transaction isn't received and I need to resend it, I'd like >> to >> be able to refer to the transaction history and resend the data >> (QueueOut[id].Data) without having to recalculate

Re: [Gambas-user] Issue 88 in gambas: G3 Help Browser - General Navigation 1 : External links

2011-08-30 Thread gambas
Comment #4 on issue 88 by benoit.m...@gmail.com: G3 Help Browser - General Navigation 1 : External links http://code.google.com/p/gambas/issues/detail?id=88 Strange: the paypal link sends me to a paypal payment page in english. -

Re: [Gambas-user] Issue 88 in gambas: G3 Help Browser - General Navigation 1 : External links

2011-08-30 Thread gambas
Comment #3 on issue 88 by adamn...@gmail.com: G3 Help Browser - General Navigation 1 : External links http://code.google.com/p/gambas/issues/detail?id=88 Tested. But the paypal link takes me to the French paypal site???

Re: [Gambas-user] gb3: using string as stream for sequential write operations of arbitrary datatypes

2011-08-30 Thread Bruce Bruen
On Tue, 2011-08-30 at 01:52 -0400, Kevin Fishburne wrote: > When a transaction isn't received and I need to resend it, I'd like > to > be able to refer to the transaction history and resend the data > (QueueOut[id].Data) without having to recalculate it, especially > since > the data may have