A
active
When I run an app outside of the IDE I get the exception
Thread was being aborted
Does that error mean something to you?
Any idea what might be causing it?
++++++++++++++++
The messagebox contained:
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (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>
I found the machine file and the system.windows.forms section but don't know
how to set the bit
<section name="system.windows.forms"
type="System.Windows.Forms.WindowsFormsSection, System.Windows.Forms,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
I'd rather to generate a .config file for this app but have no idea how to.
I generated one with the name <my app>.config and inserted
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
but it seemed to have no effect
Any help would be appreciated
Thread was being aborted
Does that error mean something to you?
Any idea what might be causing it?
++++++++++++++++
The messagebox contained:
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (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>
I found the machine file and the system.windows.forms section but don't know
how to set the bit
<section name="system.windows.forms"
type="System.Windows.Forms.WindowsFormsSection, System.Windows.Forms,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
I'd rather to generate a .config file for this app but have no idea how to.
I generated one with the name <my app>.config and inserted
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
but it seemed to have no effect
Any help would be appreciated