Re: [Gambas-user] how to indicate progress

2012-02-19 Thread Olivier Cruilles
So in this case, try to start your application by a module that open your form next and in this module put the command Application.Busy = 1 Olivier Cruilles Mail: linu...@club-internet.fr Le 19 févr. 2012 à 14:14, Olivier Cruilles a écrit : > May be you ca use this one: > > Application.Bus

Re: [Gambas-user] how to indicate progress

2012-02-19 Thread Jussi Lahtinen
There is quite good documentation of Gambas. I strongly suggest to look at it. Application.Busy is not indicator of application doing something. It's not automatically adjusted. http://gambasdoc.org/help/comp/gb.qt4/application/busy?v3 Jussi On Sun, Feb 19, 2012 at 15:25, Bill-Lancaster wrote

Re: [Gambas-user] how to indicate progress

2012-02-19 Thread Bill-Lancaster
Thanks for the idea.. The exec process runs until finished then the form appears at this point "application.busy = 0" is executed so "application.busy = 1" state is never seen! -- View this message in context: http://old.nabble.com/how-to-indicate-progress-tp33351547p33351740.html Sent from the

Re: [Gambas-user] how to indicate progress

2012-02-19 Thread Jussi Lahtinen
http://gambasdoc.org/help/lang/exec?v3 http://gambasdoc.org/help/comp/gb/process?v3 Dim hProcess As Process hProcess = Exec [ ... If hProcess.State = Process.Running Then ... Jussi On Sun, Feb 19, 2012 at 14:13, Bill-Lancaster wrote: > > Gambas 3 > > I want to run an Exec command when

Re: [Gambas-user] how to indicate progress

2012-02-19 Thread Olivier Cruilles
May be you ca use this one: Application.Busy = 1 and when the Process stops Application.Busy = 0 Olivier Cruilles Mail: linu...@club-internet.fr Le 19 févr. 2012 à 13:13, Bill-Lancaster a écrit : > > Gambas 3 > > I want to run an Exec command when my programme starts. > > Using t

[Gambas-user] how to indicate progress

2012-02-19 Thread Bill-Lancaster
Gambas 3 I want to run an Exec command when my programme starts. Using the Open or Activate event for the main means that the form doesn't appear until the exec process has finished. How can I indicate that the Exec process is still running? -- View this message in context: http://old.nabble.