Re: [Gambas-user] Form stealing focus problem (was Re: Balloon.Info on TrayIcon)

2015-03-02 Thread Fabien Bodard
Cool for popup menu Le 2 mars 2015 21:25, "Benoît Minisini" a écrit : > Le 12/02/2015 01:58, Benoît Minisini a écrit : > > Le 12/02/2015 01:23, Michael A. Capone a écrit : > >> Hi folks, > >> > >> First of all, a big THANK YOU for the creation of Gambas! It has > >> allowed us to port legacy VB

Re: [Gambas-user] Clearing data from TextAreas & ListBoxes

2015-03-02 Thread Tobias Boege
On Mon, 02 Mar 2015, John Rose wrote: > On 02/03/15 19:25, Tobias Boege wrote: > > On Mon, 02 Mar 2015, John Rose wrote: > >> I have a Click event on a Button. At runtime, clicking the button should > >> cause clearing of the data from a TextArea & some ListBoxes. There's no > >> way this 'clearanc

[Gambas-user] Form stealing focus problem (was Re: Balloon.Info on TrayIcon)

2015-03-02 Thread Benoît Minisini
Le 12/02/2015 01:58, Benoît Minisini a écrit : > Le 12/02/2015 01:23, Michael A. Capone a écrit : >> Hi folks, >> >> First of all, a big THANK YOU for the creation of Gambas! It has >> allowed us to port legacy VB code to linux and get several of our users >> off the Windows platform. >> >> I've s

Re: [Gambas-user] Clearing data from TextAreas & ListBoxes

2015-03-02 Thread John Rose
Tobi, I changed coding to: Public Sub RunButton_Click() ... StopListBox.Clear SteckersListBox.Clear ReflectorListBox.Clear RotorsListBox.Clear DetailTextArea.Clear Wait ... aExecParameters = ["/opt/Enigma/turing_bombe_all_wheels", sMenuPath] 'sMenuPath points to an input file pturing_bombe = Exec

Re: [Gambas-user] Clearing data from TextAreas & ListBoxes

2015-03-02 Thread Tobias Boege
On Mon, 02 Mar 2015, John Rose wrote: > I have a Click event on a Button. At runtime, clicking the button should > cause clearing of the data from a TextArea & some ListBoxes. There's no > way this 'clearance' cannot be executed as the Exec of a CL program > (which definitely happens because it pop

[Gambas-user] Clearing data from TextAreas & ListBoxes

2015-03-02 Thread John Rose
I have a Click event on a Button. At runtime, clicking the button should cause clearing of the data from a TextArea & some ListBoxes. There's no way this 'clearance' cannot be executed as the Exec of a CL program (which definitely happens because it populates these controls) soon follows it. Howeve