Page 1 of 1

Exit application?

Posted: Sat Sep 09, 2017 4:09 pm
by Dummy1912
Hello,

Seems sometimes we can start and exit our app without problems
but then sometimes we get a error and the app just crash without exit it

why???
search on net but not really a solution found :(

anyone?

'used
Code: Select all
    Private Sub FrmLogin_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
        e.Cancel = True
        Try
            If MyFunctions.IsExit = True Then
                Util.displayMessage("Do you really want to exit from '" & MyFunctions.ProjectName & "'?", MyFunctions.ProjectName, "YesNo")
                If MessageValue = 3 Then
                    MyFunctions.IsExit = False
                    e.Cancel = True
                ElseIf MessageValue = 2 Then
                    e.Cancel = False
                    Environment.Exit(0)
                End If
            Else
                e.Cancel = False
            End If

        Catch ex As Exception
            e.Cancel = False
           Environment.Exit(0)
        End Try
    End Sub

'tried again
Code: Select all
    Private Sub FrmLogin_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
        e.Cancel = True
        Try
            If MyFunctions.IsExit = True Then
                Util.displayMessage("Do you really want to exit from '" & MyFunctions.ProjectName & "'?", MyFunctions.ProjectName, "YesNo")
                If MessageValue = 3 Then
                    MyFunctions.IsExit = False
                    e.Cancel = True
                ElseIf MessageValue = 2 Then
                    e.Cancel = False
                    End 
                End If
            Else
                e.Cancel = False
            End If

        Catch ex As Exception
            e.Cancel = False
            End
        End Try
    End Sub

keeps failing

https://drive.google.com/open?id=0B37cl ... XRSNTlxMzQ

Re: Exit application?

Posted: Sun Sep 10, 2017 11:53 am
by CodenStuff
Could try using Exit Sub instead of End

Also try outputting the whatever the error is in your catch statement to see what is happening.

Re: Exit application?

Posted: Sun Sep 10, 2017 12:03 pm
by Dummy1912
Hi,

If we use exit sub , this won't really terminate the application... right ?

Re: Exit application?

Posted: Sun Sep 10, 2017 1:22 pm
by CodenStuff
Possibly something else running in the background that isn't being stopped/exited correctly which is why it is a good idea to try catch/output the error to see what is going on :duh;

Re: Exit application?

Posted: Sun Sep 10, 2017 1:24 pm
by Dummy1912
Hi,

Okay i will look into it ;)

Thanks