https://bugs.documentfoundation.org/show_bug.cgi?id=66419
MNS <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #11 from MNS <[email protected]> --- One way to terminate the soffice process and any of its child process on Windows Platform is to make use of ExitProcess() API. Declare Sub ExitProcess lib "Kernel32.dll" (nExitCode as Integer) Private Sub QuitApp() ThisComponent.Close(True) ExitProcess 0 End Sub When soffice instance is created for the next time (such as when a document is opened) a recovery window will popup. It can be ignored because no change is found to be made to the document, after recovery. Otherwise, once can make use of -norestore flag of soffice.exe to suppress recovery window. -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
