B4A Question ExitApplication vs. Activity.Finish - Beja    May 15, 2017 It's everywhere that to let the OS kill the app or process is better.. but I didn't read or knew why.. anyone has more info.. what's the risk of exiting the app...etc.... B4J Code Snippet Temporary Files - deleteOnExit - stevel05    Mar 7, 2025   (5 reactions) For anyone needing to write and manage temporary files I came across the File deleteOnExit method... with caution. deleteOnExit cannot be removed from the file once set. Public Sub RequestDeleteOnExit(FilePath As String) Dim tFile As JavaObject tFile.InitializeNewInstance("java.io.File",Array(FilePath)) tFile.RunMethod("deleteOnExit",Null) End Sub Usage example: RequestDeleteOnExit(File.Combine(File.DirApp,"dialogclose.css")) Hope it helps.... B4J Question Catch non-ui program exit? - KMatle    Oct 28, 2015 Is there a way to catch if a non ui program will be closed?... B4A Question Stop ShortService, StartForeground, Service and ExitApplication... - Magma    Jul 4, 2025
Sub Service_Destroy
CallSubDelayed(Me,"delayedstops")
ExitApplication
End Sub....SYSTEM_ALERT_WINDOW)
To end my service and exit - calling for a b4xpage that:
StopService... Wish Exit Try - aeric    Mar 13, 2025   (3 reactions)
Exit Try
End If
DB.Execute
Catch
Log(LastException)
End Try
DB.Close
ReturnApiResponse... B4A Question DataPickerExtended Exit the app without selecting a date - fifiddu70    Mar 27, 2025 hello everyone, I'm using the DataPickerExtended library on my app with sdk min 9 and sdk max 26 when I open the calendar and select the date everything works fine, but when I open the calendar and wait a few seconds before selecting the date, the application closes, can anyone tell me why? I noticed that the ret variable is marked in red but the application works the same but with the problem... B4A Question Wait For ...j As HttpJob - can be long... is there a way to exit it ? - Magma    Nov 1, 2024 Hi there...
sometimes the server can be slow... or something wrong from "the other side"...
is there a way to exit the following - for example at 20seconds?:
Wait For (j) JobDone(j... B4i Question Application exit from iOS 18? - Filippo    Nov 18, 2024 Hi,
I have seen (by chance) that from iOS 18 it is possible to close an app by pressing a button.
H... B4A Question Programmatically Exit from Screensaver/Somnambulator - Mike1970    Jun 17, 2024 Hi everyone,
Some time ago I posted this question on how to start programmatically the Screensaver from my Application.
Is there a way to do the opposite?
I wish to exit from the screensaver to show up my Application again (I will do it in the event that fires when new data arrives from... B4i Question Failed with a nonzero exit code - aaronk    Dec 31, 2023 Hi,
I am using:
- B4i v8.30
- Windows 10 on a MacBook Pro in a VM
- Xcode 15.1
- Using Local Builde... Page: 1   2   3   4   5   6   7   |