Questions tagged [close-application]

37 questions
0
votes
1 answer

close windows phone 8 application inibm worklight?

WL.App.close() in ibm worklight is avaiable in wp 8? I try to use this to quit my application when backbutton was pressed, but nothing've happened. If this API is not avaiable to WP8, how can i make my app close when backbutton was pressed. here's…
0
votes
2 answers

C# code (method) runs when application is closed

I have a button which when pressed closes the current form and opens a new form of the same class - i.e. so it opens a new form in it original state. I have another button which has the same functionality, however I try to call a function in the…
NickB6
  • 209
  • 2
  • 5
  • 16
-1
votes
1 answer

how to run count down timer when app is closed in flutter

Flutter how to run count down timer when the app is closed, I tried but timer each and every time starts from initial stage when I remove app from background
-1
votes
1 answer

App is not closing during appium session in Simulator

Failed to close app in simulator at the time of mobile test execution Tried driver.closeApp() command . Also tried exit with code Zero.
-1
votes
2 answers

Close a Mac OS X app

I've created a Mac OS X application, and during the development it was fine because I opened it with Xcode. But now, I try to execute the executable and it's working only the first time, because after close the window, the app persists in memory.…
user1573607
  • 522
  • 9
  • 23
-2
votes
1 answer

Why is this plain simple LINQ expression closing the app but not throwing an exception

So I have this LINQ expression that simply tries to retrieve a Entity from the database, but when it runs, the app just closes and no exceptions are thrown. I put a try catch around it to see if I could see the exception, but the debugger simply…
AxiomaticNexus
  • 6,190
  • 3
  • 41
  • 61
-2
votes
1 answer

C# // How to close console in a middle of else if statement // beginner

Write("Hello, what is you name? "); customer = ReadLine(); WriteLine($"Nice to meet you, {customer}. What kind of pizza would you like?"); pizza = ReadLine(); if (pizza == "Sausage") { …
1 2
3