Exit application?
If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
5 posts
Page 1 of 1
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
https://drive.google.com/open?id=0B37cl ... XRSNTlxMzQ
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
'tried again
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
Code: Select all
keeps failing 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
https://drive.google.com/open?id=0B37cl ... XRSNTlxMzQ
visit us on:
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
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.
Also try outputting the whatever the error is in your catch statement to see what is happening.
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
Hi,
If we use exit sub , this won't really terminate the application... right ?
If we use exit sub , this won't really terminate the application... right ?
visit us on:
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
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 

Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
Hi,
Okay i will look into it ;)
Thanks
Okay i will look into it ;)
Thanks
visit us on:
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
http://www.softpedia.com/get/System/Lau ... -Run.shtml
Check it out ! http://www.softpedia.com/publisher/I-A- ... 90017.html
Check it out ! http://www.softpedia.com/get/Desktop-En ... lock.shtml
5 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023