Click here to Skip to main content
15,888,351 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# GDI+ Pin
Josh Smith1-May-06 4:03
Josh Smith1-May-06 4:03 
GeneralRe: C# GDI+ Pin
codebala1-May-06 5:29
codebala1-May-06 5:29 
GeneralRe: C# GDI+ Pin
codebala1-May-06 7:08
codebala1-May-06 7:08 
AnswerRe: C# GDI+ Pin
kasik1-May-06 5:13
kasik1-May-06 5:13 
GeneralRe: C# GDI+ Pin
codebala1-May-06 5:22
codebala1-May-06 5:22 
QuestionDifferent exception handling behavior when running application in standalone mode instead of from visual studio Pin
Dan Neely1-May-06 3:23
Dan Neely1-May-06 3:23 
AnswerRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
Drew McGhie1-May-06 4:45
Drew McGhie1-May-06 4:45 
GeneralRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
Dan Neely1-May-06 5:08
Dan Neely1-May-06 5:08 
Instead of getting a messagebox with "test". I get the framework exception catcher.

An unhandled exception has occured in your application.  If you click 
continue, the application will ignore this error and attempt to continue.  
If you click quit, the application with be shut down immediately.

test.


details contains the following:
See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Exception: test
   at Exception.Form1.button1_Click(Object sender, EventArgs e) in c:\documents and settings\neelyd\my documents\visual studio projects\exception\exception\form1.cs:line 96
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
Exception
    Assembly Version: 1.0.2312.14759
    Win32 Version: 1.0.2312.14759
    CodeBase: file:///C:/Documents%20and%20Settings/neelyd/My%20Documents/Visual%20Studio%20Projects/Exception/Exception/bin/Debug/Exception.exe
----------------------------------------
System.Windows.Forms
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
System.Drawing
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
System.Xml
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.2032
    CodeBase: file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
----------------------------------------

************** JIT Debugging **************
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.

GeneralRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
S. Senthil Kumar1-May-06 7:03
S. Senthil Kumar1-May-06 7:03 
AnswerRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
Roy Heil1-May-06 7:50
professionalRoy Heil1-May-06 7:50 
GeneralRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
Dan Neely1-May-06 9:29
Dan Neely1-May-06 9:29 
GeneralRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
Roy Heil1-May-06 18:14
professionalRoy Heil1-May-06 18:14 
GeneralRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
Dan Neely2-May-06 2:55
Dan Neely2-May-06 2:55 
GeneralRe: Different exception handling behavior when running application in standalone mode instead of from visual studio Pin
Dan Neely2-May-06 4:45
Dan Neely2-May-06 4:45 
QuestionHow to create dynamic empty string array Pin
WCup1-May-06 0:38
WCup1-May-06 0:38 
AnswerRe: How to create dynamic empty string array Pin
Larantz1-May-06 0:42
Larantz1-May-06 0:42 
GeneralRe: How to create dynamic empty string array Pin
WCup1-May-06 3:16
WCup1-May-06 3:16 
GeneralRe: How to create dynamic empty string array Pin
codehacker381-May-06 3:46
codehacker381-May-06 3:46 
GeneralRe: How to create dynamic empty string array Pin
Larantz1-May-06 8:21
Larantz1-May-06 8:21 
AnswerRe: How to create dynamic empty string array Pin
Guffa1-May-06 0:45
Guffa1-May-06 0:45 
GeneralRe: How to create dynamic empty string array Pin
code_wiz1-May-06 1:55
code_wiz1-May-06 1:55 
GeneralRe: How to create dynamic empty string array Pin
Guffa1-May-06 2:32
Guffa1-May-06 2:32 
Questionhow to check it programatically Pin
pujareddy1-May-06 0:18
pujareddy1-May-06 0:18 
QuestionKeyboard focus ? Pin
Husam Burhan1-May-06 0:17
Husam Burhan1-May-06 0:17 
AnswerRe: Keyboard focus ? Pin
Ravi Bhavnani1-May-06 2:22
professionalRavi Bhavnani1-May-06 2:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.