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

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] 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 it,

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

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 reasonable

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 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 application

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 entry

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 recalculate

[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

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 rewrite my

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(strQ)

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ît

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 gam...@users.sourceforge.net 'Form.Close' is incorrectly overridden in class 'FDevice' Gambas 3 rev 4052 @ Ubuntu 11.04 64bit

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

[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

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 the

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 flick between a

[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] 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 check is

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. The

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 method of a

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] 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

[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

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, maybe

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

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 the

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 fve...@hotmail.com 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