Re: [Gambas-user] Bug in ide using datacomboview

2015-07-29 Thread Marco Ancillotti
Thank's a lot ! Il 30/07/2015 04:55, Benoît Minisini ha scritto: > Le 22/07/2015 12:18, Marco Ancillotti a écrit : >> Hi all , >> >> from the ide when using datacomboview opening columns list show field of >> base table , not the table chosed from control table field. >> >> Setting right fields c

Re: [Gambas-user] Bug in ide using datacomboview

2015-07-29 Thread Benoît Minisini
Le 22/07/2015 12:18, Marco Ancillotti a écrit : > > Hi all , > > from the ide when using datacomboview opening columns list show field of > base table , not the table chosed from control table field. > > Setting right fields changing .form work perfectly so I think is an ide > problem. > > bye, > m

Re: [Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread adamn...@gmail.com
On Wed, 29 Jul 2015 21:21:09 -0400 "nando" wrote: > Benoit, > Perhaps you could provide an example. I find nothing for the correct > syntax/use. > > For example... > > Private p As Pointer > > Public Struct EmployeeStruct > FirstName as String > Age as integer > End Struct > > Public AnE

Re: [Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread nando
Benoit, Perhaps you could provide an example. I find nothing for the correct syntax/use. For example... Private p As Pointer Public Struct EmployeeStruct FirstName as String Age as integer End Struct Public AnEmployee as EmployeeStruct AnEmployee = New EmployeeStruct p = AnEmployee Print

Re: [Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread nando
SWEET! Thank you Benoit. -- Original Message --- From: Benoît Minisini To: nand...@nothingsimple.com, mailing list for gambas users Sent: Wed, 29 Jul 2015 21:37:29 +0200 Subject: Re: [Gambas-user] Print SizeOf(t) 't is a string > Le 29/07/2015 21:15, nando a écrit : > > Thank

Re: [Gambas-user] Custom List Control

2015-07-29 Thread Benoît Minisini
Le 29/07/2015 21:38, Patrick Wright a écrit : > Hello, > > I am working on a simple, custom control similar to the ListBox using a > ListContainer and TextLabels. I am using these two items because the > default ListBox control (and every other list) don't seem to support text > wrapping or fonts.

Re: [Gambas-user] Issue 630 in gambas: Gambas signal 11 on external calls, if a previous call (function doesn't exist in library)

2015-07-29 Thread gambas
Comment #4 on issue 630 by uale...@gmail.com: Gambas signal 11 on external calls, if a previous call (function doesn't exist in library) https://code.google.com/p/gambas/issues/detail?id=630 Thanks for the quick fix! -- You received this message because this project is configured to send all

Re: [Gambas-user] Extensible Image Viewer

2015-07-29 Thread Tobias Boege
On Wed, 29 Jul 2015, Beno?t Minisini wrote: > Le 29/07/2015 19:13, Tobias Boege a ?crit : > > On Tue, 28 Jul 2015, Tobias Boege wrote: > >> Extensibility is accomplished by a plugin system (the base code for this > >> is also in the software farm for some days now, it's called "Plugins"). > >> It's

Re: [Gambas-user] Extensible Image Viewer

2015-07-29 Thread Benoît Minisini
Le 29/07/2015 21:31, Alexie a écrit : > Hi Benoit, > > Before you release 3.8, is it possible to look at issue 630? Should be > an issue fix i think. > > https://code.google.com/p/gambas/issues/detail?id=630 > > Regards and Thanks, > Alex > Fixed! -- Benoît Minisini

Re: [Gambas-user] Issue 630 in gambas: Gambas signal 11 on external calls, if a previous call (function doesn't exist in library)

2015-07-29 Thread gambas
Updates: Status: Fixed Comment #3 on issue 630 by benoit.m...@gmail.com: Gambas signal 11 on external calls, if a previous call (function doesn't exist in library) https://code.google.com/p/gambas/issues/detail?id=630 It's fixed in revision #7191. No idea why I closed the library when a

Re: [Gambas-user] Issue 630 in gambas: Gambas signal 11 on external calls, if a previous call (function doesn't exist in library)

2015-07-29 Thread gambas
Updates: Status: Accepted Labels: -Version Version-3.7.0 Comment #2 on issue 630 by benoit.m...@gmail.com: Gambas signal 11 on external calls, if a previous call (function doesn't exist in library) https://code.google.com/p/gambas/issues/detail?id=630 (No comment was entered for

[Gambas-user] Custom List Control

2015-07-29 Thread Patrick Wright
Hello, I am working on a simple, custom control similar to the ListBox using a ListContainer and TextLabels. I am using these two items because the default ListBox control (and every other list) don't seem to support text wrapping or fonts. Everything seems to be going well, however I am unable

Re: [Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread Benoît Minisini
Le 29/07/2015 21:15, nando a écrit : > Thanks guys, > I was in 'C' mode and needed the size of a structure. > > Perhaps, Benoit, sizeof(a string, or a struct) can do exactly that? > wishing out loud. > > Thanks! > DOH! > -Nando If you a pointer to the structure, just use Object.SizeOf() to know it

Re: [Gambas-user] Extensible Image Viewer

2015-07-29 Thread Benoît Minisini
Le 29/07/2015 19:13, Tobias Boege a écrit : > On Tue, 28 Jul 2015, Tobias Boege wrote: >> Extensibility is accomplished by a plugin system (the base code for this >> is also in the software farm for some days now, it's called "Plugins"). >> It's a bit of a hack but works nicely for my purposes. >>

Re: [Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread nando
Thanks guys, I was in 'C' mode and needed the size of a structure. Perhaps, Benoit, sizeof(a string, or a struct) can do exactly that? wishing out loud. Thanks! DOH! -Nando -- Original Message --- From: Benoît Minisini To: nand...@nothingsimple.com, mailing list for gambas user

Re: [Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread Tobias Boege
On Wed, 29 Jul 2015, nando wrote: > Dim t As String > > Print SizeOf(t) > Type mismatch: wanted integer, got string instead > > 'Sizeof also errors on a Stucture > > Ubuntu 14.04LTS > Gambas 3.7.1 > Do you realise that you were replying to a totally unrelated thread from July 2013? Create a n

Re: [Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread Benoît Minisini
Le 29/07/2015 20:00, nando a écrit : > Dim t As String > > Print SizeOf(t) > Type mismatch: wanted integer, got string instead > > 'Sizeof also errors on a Stucture > > Ubuntu 14.04LTS > Gambas 3.7.1 > > -Fernando > Have you read the documentation of SizeOf()? -- Benoît Minisini ---

[Gambas-user] Print SizeOf(t) 't is a string

2015-07-29 Thread nando
Dim t As String Print SizeOf(t) Type mismatch: wanted integer, got string instead 'Sizeof also errors on a Stucture Ubuntu 14.04LTS Gambas 3.7.1 -Fernando -- ___ Gambas-user

Re: [Gambas-user] Extensible Image Viewer

2015-07-29 Thread Tobias Boege
On Tue, 28 Jul 2015, Tobias Boege wrote: > Extensibility is accomplished by a plugin system (the base code for this > is also in the software farm for some days now, it's called "Plugins"). > It's a bit of a hack but works nicely for my purposes. > I tried to use the thing outside of the IDE toda

[Gambas-user] ColorChoser

2015-07-29 Thread Charlie
In the ColorChooser there is a button on the top right that the tool tip says "Follow color grid". It seems to fix the the colour change to a grid which makes any movement jerky. Is there a way to turn this off in code? -- View this

Re: [Gambas-user] Adding custom colors

2015-07-29 Thread Marco Ancillotti
ok, I will try it, for now I use a class where I define my custom color that is loaded when I open a new form and set colors I've defined to all object. For now it works , if with next revision is possible to set colors directly in the color class it will be perfect. Thank's, Marco. Il 29/0

Re: [Gambas-user] Adding custom colors

2015-07-29 Thread Benoît Minisini
Le 24/07/2015 21:35, Marco Ancillotti a écrit : > Hi, > > is there a way to add custom colors ? > > Somethink like assign color to variable and assign by variable name in > ide like the one pre defined. > I found solution for that in revision #7189: - The IDE color chooser is now filled dynamical

Re: [Gambas-user] Clipboard Persistence

2015-07-29 Thread Benoît Minisini
Le 29/07/2015 09:33, Nigel Verity a écrit : > Hi > > If often need to copy text from a form in a Gambas application and > paste it into a non-Gambas application - typically LibreOffice > Writer. > > While the Gambas app remains open there is no problem. However, once > I close the Gambas app the "P

Re: [Gambas-user] Issue 631 in gambas: BUG Gambas Crashed in the last work

2015-07-29 Thread gambas
Comment #1 on issue 631 by uale...@gmail.com: BUG Gambas Crashed in the last work https://code.google.com/p/gambas/issues/detail?id=631 Can you attach an example project for reproduction? -- You received this message because this project is configured to send all issue notifications to this

[Gambas-user] Clipboard Persistence

2015-07-29 Thread Nigel Verity
Hi If often need to copy text from a form in a Gambas application and paste it into a non-Gambas application - typically LibreOffice Writer. While the Gambas app remains open there is no problem. However, once I close the Gambas app the "Paste" option on the main or context menu of the target i

[Gambas-user] Issue 631 in gambas: BUG Gambas Crashed in the last work

2015-07-29 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 631 by josemari...@gmail.com: BUG Gambas Crashed in the last work https://code.google.com/p/gambas/issues/detail?id=631 Hello, I'm trying to help a friend of mine with t