Crash after installing KB2465361
-
Help! After windows update with KB2465361 I get crashes everywhere. My application is based on Ultimate Toolbox. MS created an own CMFCToolbar. In Ultimate Toolbox this has been renamed to COXToolbar, but it crashes somewhere in there. I've replaced the toolbar with the MS CMFCToolbar, but now my app crashes while opening a file inside filecore.cpp. Anyone else out there suffering similar problems and a way out of this? Regards, Franz
-
Help! After windows update with KB2465361 I get crashes everywhere. My application is based on Ultimate Toolbox. MS created an own CMFCToolbar. In Ultimate Toolbox this has been renamed to COXToolbar, but it crashes somewhere in there. I've replaced the toolbar with the MS CMFCToolbar, but now my app crashes while opening a file inside filecore.cpp. Anyone else out there suffering similar problems and a way out of this? Regards, Franz
If you don't want to debug into COXToolbar, probably the best thing is to create a new app, then move your old code into the new app structure, just to make sure everything is hooked up correctly.
Best wishes, Hans
-
If you don't want to debug into COXToolbar, probably the best thing is to create a new app, then move your old code into the new app structure, just to make sure everything is hooked up correctly.
Best wishes, Hans
Debugging should not be the problem :) , but probably I do not understand what's going on :laugh: . The problem is here: afxbasepane.cpp line 133 does a call to SetPaneStyle(dwStyle | GetPaneStyle()); This runs into virtual COleDropSource* GetDropSource(), which I do not understand. It seems that there is some linking problem, since GetPaneStyle does not exist inside OXCoolToolBar. This is strange.
-
If you don't want to debug into COXToolbar, probably the best thing is to create a new app, then move your old code into the new app structure, just to make sure everything is hooked up correctly.
Best wishes, Hans
...found out. During the update of the ultimate toolbox to Version 9.3 (Update 05) I missed one line in OXCoolToolBar.h in 1722. Instead of #define CToolBar COXMFCToolBar there was a #define CToolBar CMFCToolBar, which lead to the confusion. As I was close to getting nuts and calling for the priest I recognized this new line in the new code base of 9.3.