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 today for

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

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 new thread

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. I tried

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

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

[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 -- ___

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] 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 gam...@users.sourceforge.net To: nand...@nothingsimple.com,

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 its size

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] 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 a bit of 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
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] Print SizeOf(t) 't is a string

2015-07-29 Thread nando
SWEET! Thank you Benoit. -- Original Message --- From: Benoît Minisini gam...@users.sourceforge.net To: nand...@nothingsimple.com, mailing list for gambas users gambas-user@lists.sourceforge.net Sent: Wed, 29 Jul 2015 21:37:29 +0200 Subject: Re: [Gambas-user] Print SizeOf(t) 't

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, marco.

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 nand...@nothingsimple.com 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

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

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

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 Paste

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 dynamically

[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? http://gambas.8142.n7.nabble.com/file/n52129/ColorGrid.png -- 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