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