|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-04-01 21:54 UTC] tpunt@php.net
-Status: Open
+Status: Wont fix
[2017-04-01 21:54 UTC] tpunt@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 20:00:01 2025 UTC |
Description: ------------ Hi Folks, first I just want to say that you did good work with WinBinder! Respect! So, but there's still a little Problem. When i gonna try to throw an exception like here: try { // creating windows normal way.... wb_main_loop(); } catch(Exception $e){ // message box for $e->getMessage() here... } ...the CLI Windows process gonna crash. Do you think that you can find a fix for this? Or is my Code the Problem? Greets, Jean. Reproduce code: --------------- Heres the Code without Includes (theres no php error for sure) ### MAIN BLOCK try { // hauptfenster erzeugen. freelancer_wb_create_window(null, 'main', 'FreeLancer 0.2', ResizableWindow, null, null, 800, 400); // main loop wb_main_loop(); } catch(Exception $e){ wb_message_box(null, $e->getMessage(), "FreeLancer Ausnahme", WBC_WARNING); file_put_contents(FREELANCER_DIR_ROOT . 'last_crash.txt', $e); //exit(1); } Expected result: ---------------- An WIN32 Crash (exception) Actual result: -------------- Ill really tried to find a way to copy the backtrace, but i failed. When you know a way to copy that text let me know it!