My question regarding the following . . .
went to C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFI G\machine.config as suggested . . .
But once there, I could not open, program was in box that came up with programs, nor did I know "specific" address.
Sorry, a real dummy . . . getting this EXACT same message from a calyx point mortgage program . . . when trying to import.
Now the old post and Peter's response . . .
Posted - 12/29/2005 : 1:46:09 PM
--------------------------------------------------------------------------------
I am new to
vb.net.I just ran in to this error.
My question is where can i find this config file ?
To enable just in time (JIT) debugging, the config file for this
application or machine (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the machine
rather than being handled by this dialog.
Thanks
planoie
Moderator
USA
3563 Posts
Posted - 12/29/2005 : 2:44:18 PM
--------------------------------------------------------------------------------
You need to have an application config file which will be either
1. An exe's config file. In visual studio, this is an "app.config" file that turns into "myapplication.exe.config" when you compile.
2. A "web.config" file in an ASP.NET application.
Or you can find that setting in your machine.config file typically found at:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFI G\machine.config
-Peter