> Hi,
>
> Please which is the correct way of closing the application ?
>
> While closing I have randomly some error about some activity which is still
> going on as writing to socket or timer activity...

Which messages *exactly* ?

>
> Besides, even if I close with "QUIT", at a following boot the application
> starts automatically as happens to the applications left open at shut down.

Don't use QUIT, and check your session contents with the Gnome control center.

>
> (Debian 5.0.1, Gnome, QT, Gambas 2.14 locally compiled)
>
> Regards
> Pino
> ----------------
> PUBLIC SUB mnuQUIT_Click()
>   timer1.Enabled = FALSE
>   LogServer.Close()
>
>   Timer1.Enabled = FALSE ' Disable polling
>   TRY CLOSE Sport
>    IF Socket1.Status > 0 THEN CLOSE #Socket1
>   EXEC ["killall", "rigctld"]

You'd better add WAIT, otherwise all these kills are run in the background.

>   EXEC ["killall", "xplanet"]
>   EXEC ["killall", "tail"]
>   EXEC ["killall", "xdx"]
>   mnuSTOP_Click()
>   EXEC ["killall", "fldigi"]
>   FQSOList.Close
>   FMain.Close      ' ME
> END
> ------------------

Regards,

-- 
Benoît

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to