[Gambas-user] revision 5732 gb.xml.h misasing

2013-07-16 Thread wally
At revision 5732. In file included from main.cpp:29:0: node.h:25:20: fatal error: gb.xml.h: No such file or directory -- See everything from the browser to the database with AppDynamics Get end-to-end visibility with a

[Gambas-user] Issue 455 in gambas: gb.report generates a report too bigger

2013-07-16 Thread gambas
Status: New Owner: Labels: Version-TRUNK Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 455 by flynetin...@gmail.com: gb.report generates a report too bigger http://code.google.com/p/gambas/issues/detail?id=455 1) gb.report generates a report too bigge

Re: [Gambas-user] A "Callback" function doesn't work.

2013-07-16 Thread Ru Vuott
Hello Jussi, > 1. Have you confirmed that the example made in C really works? Yes, it does perfectly. > 2. You should confirm size of jack_default_audio_sample_t. confirm... where ? > 3. Cannot lock down 82274202 byte memory area (Cannot allocate memory) ?? I suppose that this is a s

Re: [Gambas-user] A "Callback" function doesn't work.

2013-07-16 Thread Jussi Lahtinen
1. Have you confirmed that the example made in C really works? 2. You should confirm size of jack_default_audio_sample_t. Mistakes with memcpy doesn't always lead to SGN11. Since memory area you are writing over, may be owned by the program doing the mistake. That often causes random behaviour. 3

Re: [Gambas-user] Two problems painting richtext

2013-07-16 Thread Fabien Bodard
Public Sub dwgDrawRichText_Draw() Dim hExtent As PaintExtents Paint.Text("Align.Center OK.", 0, 0, Paint.Width, Paint.Height, Align.Center) hExtent = Paint.PathExtents Paint.Brush = Paint.RadialGradient(hExtent.X, hExtent.Y, Max(hExtent.Width, hExtent.Height), hExtent.X + hExtent.Width

Re: [Gambas-user] Tobis "Blob" datatype (was "Hot to load and savbe ...")

2013-07-16 Thread Randall Morgan
I guess what I was trying to say is that the BLOB type comes from the database component not the core language. As it is database specific. On Tue, Jul 16, 2013 at 2:50 AM, Bruce wrote: > On Tue, 2013-07-16 at 18:34 +0930, Bruce wrote: > > On Tue, 2013-07-16 at 10:20 +0200, Tobias Boege wrote:

[Gambas-user] GB.DB Edit use string with numbers: wrong or cannnot scape?

2013-07-16 Thread PICCORO McKAY Lenz
See the documentation: http://gambasdoc.org/help/comp/gb.db/db/edit that seems the parameters if provides a text but this text only have numbers , interprete this parameter as number (such integer) and if column is type Varchar, resultset never retunrs any results.. how can i force the parameter a

Re: [Gambas-user] Mouse.Inside() bug with collapsed Expander?

2013-07-16 Thread Fabien Bodard
I think Mouse.inside use the screen coords so even if the expended is collapsed, the dw2 don't move in reallity. So the only thing is that mouse.inside must test the visibility. Then on other hand ... Why this user not use _enter and _leave events to get the current mouse zone ?. Le 16 juil. 2013

Re: [Gambas-user] Hot to load and savbe to DB a binary file (not image either archive strings) (PICCORO McKAY Lenz) (Tobias Boege) (Randall Morgan)

2013-07-16 Thread Tobias Boege
On Tue, 16 Jul 2013, PICCORO McKAY Lenz wrote: > But the problem that Bruce mentioned are true.., ah To0bi thanks for the > reply , but where i can download attached files of mail list? please? Normally, i.e. if you're subscribed to the mailing list, you receive mails with their attachments. Howev

Re: [Gambas-user] Hot to load and savbe to DB a binary file (not image either archive strings) (PICCORO McKAY Lenz) (Tobias Boege) (Randall Morgan)

2013-07-16 Thread PICCORO McKAY Lenz
Bruce, about the scape problem : > IIRC, recently there was a thread on a problem with postgresql v 9.2?? > blobs that were being > returned from the database as escaped strings. One of my colleagues fixed > that on our > production database but woefully failed to document what the fix was. I >

[Gambas-user] Mouse.Inside() bug with collapsed Expander?

2013-07-16 Thread Tobias Boege
Hi, a guy at http://gambas-club.de[0] discovered some strange behaviour with Mouse.Inside() and two DrawingAreas of which one is inside a collapsed Expander. I know this sounds more specific than useful. Honestly, I haven't dug further into it (if it's only with Expanders or only with DrawingArea

Re: [Gambas-user] A "Callback" function doesn't work.

2013-07-16 Thread Ru Vuott
Hello, I do not understand why, but today I re-tried the test, and i received strangly these different info: * GNU gdb (GDB) 7.5.91.20130417-cvs-ubuntu Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later

Re: [Gambas-user] Tobis "Blob" datatype (was "Hot to load and savbe ...")

2013-07-16 Thread Bruce
On Tue, 2013-07-16 at 18:34 +0930, Bruce wrote: > On Tue, 2013-07-16 at 10:20 +0200, Tobias Boege wrote: > > On Tue, 16 Jul 2013, Bruce wrote: > > > On Mon, 2013-07-15 at 23:15 -0700, Randall Morgan wrote: > > > Bruce, > > > > > > > > The blob data type is a binary object and is a MySQL data type.

Re: [Gambas-user] Tobis "Blob" datatype (was "Hot to load and savbe ...")

2013-07-16 Thread Bruce
On Tue, 2013-07-16 at 10:20 +0200, Tobias Boege wrote: > On Tue, 16 Jul 2013, Bruce wrote: > > On Mon, 2013-07-15 at 23:15 -0700, Randall Morgan wrote: > > Bruce, > > > > > > The blob data type is a binary object and is a MySQL data type. Not a > > > Gambas data type. It is used in a few other dat

Re: [Gambas-user] Tobis "Blob" datatype (was "Hot to load and savbe ...")

2013-07-16 Thread Tobias Boege
On Tue, 16 Jul 2013, Bruce wrote: > On Mon, 2013-07-15 at 23:15 -0700, Randall Morgan wrote: > Bruce, > > > > The blob data type is a binary object and is a MySQL data type. Not a > > Gambas data type. It is used in a few other databases as well. > > > > > > On Mon, Jul 15, 2013 at 10:05 PM, Bru

[Gambas-user] Tobis "Blob" datatype (was "Hot to load and savbe ...")

2013-07-16 Thread Bruce
On Mon, 2013-07-15 at 23:15 -0700, Randall Morgan wrote: Bruce, > > The blob data type is a binary object and is a MySQL data type. Not a > Gambas data type. It is used in a few other databases as well. > > > On Mon, Jul 15, 2013 at 10:05 PM, Bruce wrote: > > > On Mon, 2013-07-15 at 22:11 +020