Click here to Skip to main content
15,895,557 members
Home / Discussions / C#
   

C#

 
QuestionScope issue closing a connection after exception Pin
Harley Burton27-Jun-12 6:02
Harley Burton27-Jun-12 6:02 
AnswerRe: Scope issue closing a connection after exception Pin
Pete O'Hanlon27-Jun-12 6:13
mvePete O'Hanlon27-Jun-12 6:13 
AnswerRe: Scope issue closing a connection after exception Pin
Luc Pattyn27-Jun-12 6:20
sitebuilderLuc Pattyn27-Jun-12 6:20 
SuggestionRe: Scope issue closing a connection after exception Pin
kisMicrosoftDev27-Jun-12 6:29
kisMicrosoftDev27-Jun-12 6:29 
GeneralRe: Scope issue closing a connection after exception Pin
Harley Burton27-Jun-12 6:57
Harley Burton27-Jun-12 6:57 
GeneralRe: Scope issue closing a connection after exception Pin
mohancbe27-Jun-12 21:11
mohancbe27-Jun-12 21:11 
AnswerRe: Scope issue closing a connection after exception Pin
Harley Burton14-Aug-19 4:37
Harley Burton14-Aug-19 4:37 
GeneralDrawImage with NearestNeighbor-Interpolation Pin
LionAM27-Jun-12 2:03
LionAM27-Jun-12 2:03 
GeneralRe: DrawImage with NearestNeighbor-Interpolation Pin
Luc Pattyn27-Jun-12 9:47
sitebuilderLuc Pattyn27-Jun-12 9:47 
GeneralRe: DrawImage with NearestNeighbor-Interpolation Pin
LionAM28-Jun-12 5:16
LionAM28-Jun-12 5:16 
Generallocal group to adam group problem Pin
caknoris27-Jun-12 1:38
caknoris27-Jun-12 1:38 
GeneralRe: local group to adam group problem Pin
lukeer27-Jun-12 2:59
lukeer27-Jun-12 2:59 
GeneralHow to make a word in a text modifiable(doubleClick, change color,..) in C# Pin
rongvangso727-Jun-12 0:23
rongvangso727-Jun-12 0:23 
AnswerRe: How to make a word in a text modifiable(doubleClick, change color,..) in C# Pin
Eddy Vluggen27-Jun-12 0:42
professionalEddy Vluggen27-Jun-12 0:42 
GeneralRe: How to make a word in a text modifiable(doubleClick, change color,..) in C# Pin
rongvangso727-Jun-12 5:07
rongvangso727-Jun-12 5:07 
GeneralRe: How to make a word in a text modifiable(doubleClick, change color,..) in C# Pin
Eddy Vluggen27-Jun-12 5:40
professionalEddy Vluggen27-Jun-12 5:40 
QuestionHow to put field at bottom of detail section in Crystal report Pin
maheshk_blr26-Jun-12 21:26
maheshk_blr26-Jun-12 21:26 
Questionmove App.Config to AppData folder Pin
Jassim Rahma26-Jun-12 21:04
Jassim Rahma26-Jun-12 21:04 
AnswerRe: move App.Config to AppData folder Pin
Eddy Vluggen27-Jun-12 0:46
professionalEddy Vluggen27-Jun-12 0:46 
GeneralRe: move App.Config to AppData folder Pin
PIEBALDconsult27-Jun-12 3:09
mvePIEBALDconsult27-Jun-12 3:09 
GeneralRe: move App.Config to AppData folder Pin
Cracked-Down28-Jun-12 0:59
Cracked-Down28-Jun-12 0:59 
QuestionStackOverflowException when pressing a specific button on certain computers Pin
brendanpi26-Jun-12 18:46
brendanpi26-Jun-12 18:46 
AnswerRe: StackOverflowException when pressing a specific button on certain computers Pin
OriginalGriff26-Jun-12 19:22
mveOriginalGriff26-Jun-12 19:22 
GeneralRe: StackOverflowException when pressing a specific button on certain computers Pin
brendanpi26-Jun-12 19:31
brendanpi26-Jun-12 19:31 
SuggestionRe: StackOverflowException when pressing a specific button on certain computers Pin
Trak4Net26-Jun-12 19:54
Trak4Net26-Jun-12 19:54 
If you can't use visual studio I would wrap the method call in your button click with a try { }catch (StackOverflowException e){\\log the error message and stacktrace } (if any try catch blocks are inside the method calls log there also)

If you can use visual studios to debug and replicate the exception then go to the menu "debug>exceptions" and in the window that comes up expand "Common Language Runtime Exceptions" and then expand "System" and find StackOverflowException and then check the check box under "thrown". This will take you right to the line throwing the exception when using the debugger. Before you stop the debugger you can look at your locals window to see current values of any variables.

Hope that helps...

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.