Re: [Gambas-user] constructor events

2014-06-25 Thread B Bruen
On Wed, 25 Jun 2014 09:15:01 +0200 Fabien Bodard wrote: > I really dont understand in what case it can be usefull > > Your observer in all case will be created after the object so in this case > just call a subroutine will do the same > > If you need an info during the init you can give it as p

Re: [Gambas-user] Getting the "un-specialed" XMLElement.TextContent string

2014-06-25 Thread B Bruen
On Wed, 25 Jun 2014 09:21:30 +0200 Fabien Bodard wrote: > $title = xmlnode.deserialize(raceNode.Attributes["RaceName"]) > > No? B-) Ah, OK. Thanks, the fact that it was a static function hadn't sunk in. regards Bruce -- B Bruen --

Re: [Gambas-user] Issue 432 in gambas: Crash with Paste Special feature

2014-06-25 Thread gambas
Comment #2 on issue 432 by jussi.la...@gmail.com: Crash with Paste Special feature http://code.google.com/p/gambas/issues/detail?id=432 The problem seems to be fixed, at least I cannot reproduce it with revision 6340. -- You received this message because this project is configured to send a

[Gambas-user] Form ALT+CLICK Not Move

2014-06-25 Thread herberth guzman
brus I'm make a panel for my desktop. and what I need is that the user can not move the panel to push ALT + CLICK MOUSE. I do not understand because I stretched out on the subject. -- Open source business process management

Re: [Gambas-user] Sorting gridviews

2014-06-25 Thread Tobias Boege
On Wed, 25 Jun 2014, B Bruen wrote: > Someone, recently, was discussing sorting gridviews over multiple columns. > Tobi? > > Was any progress made on this? > The project was finished some time ago. But likely the results will not please you because the code is not very integrative. Basically,

Re: [Gambas-user] Issue 531 in gambas: Gambas3 has a non-redistributable file (PHP license)

2014-06-25 Thread gambas
Comment #2 on issue 531 by gianfran...@abinsula.com: Gambas3 has a non-redistributable file (PHP license) http://code.google.com/p/gambas/issues/detail?id=531 Many thanks! -- You received this message because this project is configured to send all issue notifications to this address. You ma

Re: [Gambas-user] Issue 530 in gambas: Bottom part of Target distribution dialog box is missing

2014-06-25 Thread gambas
Updates: Status: WontFix Comment #3 on issue 530 by benoit.m...@gmail.com: Bottom part of Target distribution dialog box is missing http://code.google.com/p/gambas/issues/detail?id=530 (No comment was entered for this change.) -- You received this message because this project is confi

Re: [Gambas-user] Issue 531 in gambas: Gambas3 has a non-redistributable file (PHP license)

2014-06-25 Thread gambas
Updates: Status: Accepted Comment #1 on issue 531 by benoit.m...@gmail.com: Gambas3 has a non-redistributable file (PHP license) http://code.google.com/p/gambas/issues/detail?id=531 Oops. I thought that PHP was free software compatible with GNU... I will rewrite the code. -- You rec

[Gambas-user] Issue 531 in gambas: Gambas3 has a non-redistributable file (PHP license)

2014-06-25 Thread gambas
Status: New Owner: Labels: Version-3.5.0 Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 531 by costamag...@gmail.com: Gambas3 has a non-redistributable file (PHP license) http://code.google.com/p/gambas/issues/detail?id=531 Quoting from https://bugs.de

Re: [Gambas-user] Form ALT+CLICK Not Move

2014-06-25 Thread Fabien Bodard
In this case I think it's for a panel Le 25 juin 2014 06:08, "B Bruen" a écrit : > On Wed, 25 Jun 2014 13:08:10 +0930 > B Bruen wrote: > > > On Wed, 25 Jun 2014 12:53:41 +0930 > > B Bruen wrote: > > > > > On Tue, 24 Jun 2014 20:34:09 -0600 > > > herberth guzman wrote: > > > > > > > Fabien > >

Re: [Gambas-user] Getting the "un-specialed" XMLElement.TextContent string

2014-06-25 Thread Fabien Bodard
Le 25 juin 2014 01:04, "B Bruen" a écrit : > > On Tue, 24 Jun 2014 16:36:11 +0200 > "Adrien Prokopowicz" wrote: > > > Le Tue, 17 Jun 2014 01:37:49 +0200, B Bruen a > > écrit: > > > > > (I'm sure I've done this before, but I can't find my prior code nor can > > > I find it in either of the help s

Re: [Gambas-user] constructor events

2014-06-25 Thread Fabien Bodard
I really dont understand in what case it can be usefull Your observer in all case will be created after the object so in this case just call a subroutine will do the same If you need an info during the init you can give it as param Please give more explanation of what you want to achieve Regard