Using ImageList from VB6 application causes crash on Windows 7.0 64-bit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:17:06Z http://stackoverflow.com/feeds/question/1018942 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit 2 Using ImageList from VB6 application causes crash on Windows 7.0 64-bit Joel Spolsky 2009-06-19T16:47:09Z 2009-06-19T19:28:29Z <p>I have an old VB6 application that uses an ImageList control from COMCTL32.OCX ("Microsoft Windows Common Controls 5.0 (SP2)") to provide icons for TreeViews and ListViews.</p> <p>The app won't even launch on Windows 7.0 64 bit. The minute it tries to load the form that has the ImageList on it, it crashes (well, actually, the app winks out, exiting without a trace).</p> <p>Removing the ImageList from the form solves the problem.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit/1019009#1019009 1 Answer by C-Pound Guru for Using ImageList from VB6 application causes crash on Windows 7.0 64-bit C-Pound Guru 2009-06-19T17:01:21Z 2009-06-19T17:01:21Z <p>It's possible you're running into an issue with Data Execution Protection (DEP). Test it out by disabling DEP:</p> <pre><code>bcdedit.exe /set {current} nx AlwaysOff </code></pre> <p>Reboot after entering the above in a command line. Remember to turn it back on as it's the equivalent of running Windows with your pants down.</p> <p>Edit: The command above works on Vista. I haven't tried it on Windows 7.</p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit/1019227#1019227 1 Answer by AnthonyWJones for Using ImageList from VB6 application causes crash on Windows 7.0 64-bit AnthonyWJones 2009-06-19T17:53:36Z 2009-06-19T17:53:36Z <p>A less drastic DEP tweak is go into the computers performance dialog (advanced tab of system properties) and add the apps exe to the list of exceptions on the DEP tab.</p> <p>BTW, are you sure this doesn't belong on serverfault.com. :P</p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit/1019511#1019511 2 Answer by MarkJ for Using ImageList from VB6 application causes crash on Windows 7.0 64-bit MarkJ 2009-06-19T18:50:05Z 2009-06-19T18:50:05Z <p>Report a bug to Microsoft. The VB6 runtime is <a href="http://msdn.microsoft.com/en-us/vbrun/ms788708.aspx" rel="nofollow">still supported</a> on 64-bit Windows 7. COMCTL32.ocx isn't installed with Windows 7, but it is <a href="http://msdn.microsoft.com/en-us/vbrun/ms788708.aspx" rel="nofollow">explicitly listed</a> as supported on Windows 7. </p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit/1019673#1019673 6 Answer by Joel Spolsky for Using ImageList from VB6 application causes crash on Windows 7.0 64-bit Joel Spolsky 2009-06-19T19:28:29Z 2009-06-19T19:28:29Z <p>I resolved this problem by replacing all instances of COMCTL32.OCX, which came with VB5, with MSCOMCTL.OCX, which came with VB6.</p> <p>Microsoft KB article <a href="http://support.microsoft.com/kb/190952" rel="nofollow">190952</a> has instructions for doing this. It was pretty much just a global-search-and-replace operation.</p>