Visual studio 2010 created program doesn't work on windows7 64 bit while works fine on windows xp

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Hi,
I have one tool which we developed on visual studio 2010. there are basically two parts of my project, one is UI part which i wrote in VB and algorithm part which is in C++ on back end. When we compile C++ part it creates a .dll which is used by my front
end VB program.
Now my problem is little weird since i am compiling and deploying this tool on windows xp machine but some of the users are using windows 7 64 bit machines and after running the program for about 5-10 minutes, it crashes on windows 7 with following error

<span>Not enough storage is available to process this command <br/>


and when i view details of that error, i get the following description.
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************<br/>
System.ComponentModel.
************** Loaded Assemblies **************<br/>
mscorlib<br/>
Assembly Version: 2.0.0.0<br/>
Win32 Version: 2.0.50727.5448 (Win7SP1GDR.050727-5400)<br/>
CodeBase: file:///C:/Windows/Microsoft.<br/>
------------------------------
System.Drawing<br/>
Assembly Version: 2.0.0.0<br/>
Win32 Version: 2.0.50727.5458 (Win7SP1GDR.050727-5400)<br/>
CodeBase: file:///C:/Windows/assembly/<br/>
------------------------------<br/>
<br/>
Assembly Version: 2.0.0.0<br/>
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)<br/>
CodeBase: file:///C:/Windows/assembly/<br/>
------------------------------

System.Runtime.Remoting
<br/>
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)<br/>
CodeBase: <a>file:///C:/Windows/assembly/<wbr>GAC_MSIL/System.Runtime.<wbr>Remoting/2.0.0.0__<wbr>b77a5c561934e089/System.<wbr>Runtime.Remoting.dll <br/>
------------------------------
Assembly Version: 2.0.0.0<wbr>----------<br/>
System.Configuration<br/>
Assembly Version: 2.0.0.0<br/>
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)<br/>
CodeBase: <a>file:///C:/Windows/assembly/<wbr>GAC_MSIL/System.Configuration/<wbr>2.0.0.0__b03f5f7f11d50a3a/<wbr>System.Configuration.dll <br/>
------------------------------<wbr>----------<br/>
System.Xml<br/>
Assembly Version: 2.0.0.0<br/>
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)<br/>
CodeBase: <a>file:///C:/Windows/assembly/<wbr>GAC_MSIL/System.Xml/2.0.0.0__<wbr>b77a5c561934e089/System.Xml.<wbr>dll <br/>
------------------------------<wbr>----------<br/>
Microsoft.VisualBasic.<wbr>Compatibility<br/>
Assembly Version: 8.0.0.0<br/>
Win32 Version: 8.0.50727.5420<br/>
CodeBase: <a>file:///C:/Windows/assembly/<wbr>GAC_MSIL/Microsoft.<wbr>VisualBasic.Compatibility/8.0.<wbr>0.0__b03f5f7f11d50a3a/<wbr>Microsoft.VisualBasic.<wbr>Compatibility.dll <br/>
------------------------------<wbr>----------<br/>
Axmscomctl<br/>
Assembly Version: 10.0.4504.0<br/>
Win32 Version: 10.0.4504.0<br/>
CodeBase: <a>file:///C:/Users/e50410/<wbr>AppData/Local/Apps/2.0/<wbr>1R14Z8CG.4XD/XP8YL8NJ.RXZ/iat.<wbr>..tion_0000000000000000_0000.<wbr>0009_0f28d7f9c15b672d/<wbr>Axmscomctl.DLL <br/>
------------------------------<wbr>----------<br/>
mscomctl<br/>
Assembly Version: 10.0.4504.0<br/>
Win32 Version: 10.0.4504<br/>
CodeBase: <a>file:///C:/Windows/assembly/<wbr>GAC/mscomctl/10.0.4504.0__<wbr>31bf3856ad364e35/mscomctl.dll <br/>
------------------------------<wbr>----------<br/>
Microsoft.VisualBasic.<wbr>PowerPacks.Vs<br/>
Assembly Version: 10.0.0.0<br/>
Win32 Version: 10.0.30319.1<br/>
CodeBase: <a>file:///C:/Users/e50410/<wbr>AppData/Local/Apps/2.0/<wbr>1R14Z8CG.4XD/XP8YL8NJ.RXZ/iat.<wbr>..tion_0000000000000000_0000.<wbr>0009_0f28d7f9c15b672d/<wbr>Microsoft.VisualBasic.<wbr>PowerPacks.Vs.DLL <br/>
------------------------------<wbr>----------<br/>
bzbey0lg<br/>
Assembly Version: 2.0.0.0<br/>
Win32 Version: 2.0.50727.5453 (Win7SP1GDR.050727-5400)<br/>
CodeBase: <a>file:///C:/Windows/assembly/<wbr>GAC_MSIL/System/2.0.0.0__<wbr>b77a5c561934e089/System.dll <br/>
------------------------------<wbr>----------<br/>
Accessibility<br/>
Assembly Version: 2.0.0.0<br/>
Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)<br/>
CodeBase: <a>file:///C:/Windows/assembly/<wbr>GAC_MSIL/Accessibility/2.0.0.<wbr>0__b03f5f7f11d50a3a/<wbr>Accessibility.dll <br/>
------------------------------<wbr>----------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this<br/>
application or computer (machine.config) must have the<br/>
jitDebugging value set in the system.windows.forms section.<br/>
The application must also be compiled with debugging<br/>
enabled.
For example:
<configuration><br/>
<system.windows.forms jitDebugging="true" /><br/>
</configuration>
When JIT debugging is enabled, any unhandled exception<br/>
will be sent to the JIT debugger registered on the computer<br/>
rather than be handled by this dialog box.
i am completely clue less for this error since this program works fine on xp but doesnt work on windows 7. can anyone give me an idea how to resolve this problem? it am struggling to resolve this since two weeks but not having any luck.

Thanks in advance for the help....
gops



View the full article
 
Back
Top