Download Video Player Mfc Application Has Stopped

Posted on  by 

Active3 years, 4 months ago
  1. Video Player Mfc Application
  2. Download Video Player Mfc Application Has Stopped Working
  3. Connect Mfc Application
  4. Mfc Application Error

I have an MFC application that works on XP and crashes on Windows 7. (I don't have the source - this is a 3rd-party application that the 3rd-party no longer supports; I'm just trying to get the darn thing to run).

Application

Jul 22, 2018  Main App MFC Application has stopped working. You can have a look at a few of these similar stories about MFC if you like. Download Center; Sales.

Most of the application works, but there is one screen (MDI window) that contains a ton of controls (worst UI ever), including 3 ComboBox controls. Simply moving the mouse over those controls (which are in the contracted state) causes the application to crash with the error 'MFC application has stopped working'.

From what I can determine using Spy++, the controls are standard ComboBox window classes. They're subclassed of course, and I assume that whatever processing takes place in response to the mouse-over message is causing the fault.

I was kinda hoping that running it in XP compatibility mode would help, but it doesn't.

What sort of thing would cause this to fail on Windows 7 when it worked OK on XP? (Some other parts of the application failed because some DLLs were missing, and I was able to fix that by copying the DLLs from the older environment. I was kinda hoping that this might be something similar).

PS. The old environment had Office 2003, and the new one has Office 2010. While this thing isn't really related to Office, I mention that in case it's relevant somehow.

Gary McGillGary McGill

Video Player Mfc Application

17k19 gold badges95 silver badges166 bronze badges

1 Answer

Try running the software as administrator. My guess is that the software tries to write some kind of log/temporary file to C:Windows or C:Program Files. Perhaps the application assumes a valid file pointer when opening a file for writing?

If it works, use Process Monitor to determine which file it tries to open. Then give full permissions to this folder/file and see if it works in normal mode.

Download Video Player Mfc Application Has Stopped Working

UPDATE

If hovering the controls produces a crash I would bet that you are using some kind of Skin Manager to get some kind of nice-looking UI. Skinning involves advanced hooking and/or API hijacking. Such techniques are not guaranteed to work on future versions of Windows.

I know that older versions of Codejock SkinManager did crash on Windows Vista and later. If that is the library you're using I suggest you upgrade it to the latest version or simply disable it completely.

l33tl33t
6,66812 gold badges61 silver badges131 bronze badges

Connect Mfc Application

Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.

Mfc Application Error

Not the answer you're looking for? Browse other questions tagged windows-7mfc or ask your own question.

Coments are closed