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

2015-03-03 Thread John Rose
On 03/03/15 09:53, Tobias Boege wrote: > On Tue, 03 Mar 2015, John Rose wrote: >> On 03/03/15 08:31, Fabien Bodard wrote: >> >>> And th?? controls Will not be cleared until the procedure is not ended. >>> >>> Use an ascyncronous call to your external program can help you. >>> >>> You can use a ti

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

2015-03-03 Thread Tobias Boege
On Tue, 03 Mar 2015, John Rose wrote: > On 03/03/15 08:31, Fabien Bodard wrote: > > > And th?? controls Will not be cleared until the procedure is not ended. > > > > Use an ascyncronous call to your external program can help you. > > > > You can use a timer trigger too that delay the call to the

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

2015-03-03 Thread Rolf-Werner Eilert
Am 03.03.2015 10:11, schrieb John Rose: > On 03/03/15 08:31, Fabien Bodard wrote: > >> And thé controls Will not be cleared until the procedure is not ended. >> >> Use an ascyncronous call to your external program can help you. >> >> You can use a timer trigger too that delay the call to the nex

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

2015-03-03 Thread Fabien Bodard
And thé controls Will not be cleared until the procedure is not ended. Use an ascyncronous call to your external program can help you. You can use a timer trigger too that delay the call to the next event loop Le 2 mars 2015 21:35, "Tobias Boege" a écrit : > On Mon, 02 Mar 2015, John Rose wrot

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

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