Re: [Gambas-user] GamBas3

2010-04-26 Thread richard terry
On Tuesday 27 April 2010 08:11:30 Jerry McBride wrote: > A question for you all... :') > > > Just "how usable" is Gambas3? > > I'm being pushed into dropping Gambas2 due to kde3 and qt3 being deprecated > in Gentoo. My only option is to move into Gambas 3.0... and I need to > know, just how us

Re: [Gambas-user] Mouse Clicks become unresponsive on form?

2010-04-26 Thread Benoît Minisini
> Benoît Minisini wrote: > >> Running SVN 2910. After a few mouse click, either switching a few > >> > >> > >> Many Thanks! > > > > Your main form has the Type property set to "Menu". It should be set to > > "Normal". > > > > Can you try with the Type property set to "Normal", and tell me if y

Re: [Gambas-user] Mouse Clicks become unresponsive on form?

2010-04-26 Thread Dr.Diesel
Benoît Minisini wrote: > >> Running SVN 2910. After a few mouse click, either switching a few > >> >> Many Thanks! > > Your main form has the Type property set to "Menu". It should be set to > "Normal". > > Can you try with the Type property set to "Normal", and tell me if you > have > s

[Gambas-user] GamBas3

2010-04-26 Thread Jerry McBride
A question for you all... :') Just "how usable" is Gambas3? I'm being pushed into dropping Gambas2 due to kde3 and qt3 being deprecated in Gentoo. My only option is to move into Gambas 3.0... and I need to know, just how usable is it? -- **

Re: [Gambas-user] Mouse Clicks become unresponsive on form?

2010-04-26 Thread Benoît Minisini
> Running SVN 2910. After a few mouse click, either switching a few > TabStrips or a few button clicks the mouse clicks become ineffective. > Sometimes I can click around and one click will take, but then it drops > out again. > > I have these components: > > Component=gb.image > Component=gb.g

Re: [Gambas-user] Detect a Window closed in Workspace

2010-04-26 Thread David Villalobos Cambronero
2010/4/26 Benoît Minisini > > You will have to help out a bit more :) > > > > Here is the header of the class Added to the Workspace: > > > > ' Gambas class file > > > > Inherits Window > > > > Private $hPHPEditor As Editor > > > > Public Sub _new() > > > > Me.Arrangement = Arrange.Fill > > M

Re: [Gambas-user] Detect a Window closed in Workspace

2010-04-26 Thread Benoît Minisini
> You will have to help out a bit more :) > > Here is the header of the class Added to the Workspace: > > ' Gambas class file > > Inherits Window > > Private $hPHPEditor As Editor > > Public Sub _new() > > Me.Arrangement = Arrange.Fill > Me.Expand = True > > $hPHPEditor = New Editor(Me

Re: [Gambas-user] Detect a Window closed in Workspace

2010-04-26 Thread David Villalobos Cambronero
You will have to help out a bit more :) Here is the header of the class Added to the Workspace: ' Gambas class file Inherits Window Private $hPHPEditor As Editor Public Sub _new() Me.Arrangement = Arrange.Fill Me.Expand = True $hPHPEditor = New Editor(Me) As "PHPEditor" $hPHPEditor.E

Re: [Gambas-user] "User components" replaced by "Libraries" in Gambas 3

2010-04-26 Thread Benoît Minisini
> Benoît, > > Will all the controls that are gambas written, be implemented in this > fashion too? > if so how will the IDE distinguish between a library and a control? > > Regards, > Dimitris > Nothing changed for components written in Gambas. Components can be considered as part of the langu

Re: [Gambas-user] "User components" replaced by "Libraries" in Gambas 3

2010-04-26 Thread Dimitris Anogiatis
Benoît, Will all the controls that are gambas written, be implemented in this fashion too? if so how will the IDE distinguish between a library and a control? Regards, Dimitris 2010/4/26 Benoît Minisini > > Ian Haywood ha scritto: > > > svitoos wrote: > > >> I think it is better to look for li

Re: [Gambas-user] Accent letters blocked

2010-04-26 Thread Rolf-Werner Eilert
Am 26.04.2010 11:31, schrieb Benoît Minisini: >> Hi all, >> >> One of my Gambas2 projects is a simple app that lets our students learn >> typing. It blocks all Backspace etc. and counts keys/minute and so on. >> >> In TextArea1_KeyPress() there is this part: >> >> IF key.Control THEN 'skip

Re: [Gambas-user] Detect a Window closed in Workspace

2010-04-26 Thread Benoît Minisini
> Hi, I got a problem, here is the scenario: > > I got a WorkSpace, to this work space I add some objects, these objects > inherits from Window, and basicaly has an Editor inside of them, I load a > text from a file to the Editor, what I need is that when the WorkSpace tab > is closed I need to ch

[Gambas-user] Detect a Window closed in Workspace

2010-04-26 Thread David Villalobos Cambronero
Hi, I got a problem, here is the scenario: I got a WorkSpace, to this work space I add some objects, these objects inherits from Window, and basicaly has an Editor inside of them, I load a text from a file to the Editor, what I need is that when the WorkSpace tab is closed I need to check if there

Re: [Gambas-user] Accent letters blocked

2010-04-26 Thread Benoît Minisini
> Hi all, > > One of my Gambas2 projects is a simple app that lets our students learn > typing. It blocks all Backspace etc. and counts keys/minute and so on. > > In TextArea1_KeyPress() there is this part: > >IF key.Control THEN 'skip Ctrl+Key > STOP EVENT > >ELSE

Re: [Gambas-user] "User components" replaced by "Libr aries" in Gambas 3

2010-04-26 Thread Benoît Minisini
> Ian Haywood ha scritto: > > svitoos wrote: > >> I think it is better to look for libraries in the directories listed in > >> GB3_LIBRARY_PATH, and if this variable is not defined > >> then "/usr/lib/gambas3:/usr/local/lib/gambas3":~/.local/lib/gambas3 > > > > I think this is a good idea, because

[Gambas-user] Accent letters blocked

2010-04-26 Thread Rolf-Werner Eilert
Hi all, One of my Gambas2 projects is a simple app that lets our students learn typing. It blocks all Backspace etc. and counts keys/minute and so on. In TextArea1_KeyPress() there is this part: IF key.Control THEN 'skip Ctrl+Key STOP EVENT ELSE'skip all thos