Click here to Skip to main content
15,881,882 members
Home / Discussions / C#
   

C#

 
GeneralRe: Can someone explain this... Pin
Alan N12-Oct-12 7:04
Alan N12-Oct-12 7:04 
AnswerRe: Can someone explain this... Pin
V.12-Oct-12 3:22
professionalV.12-Oct-12 3:22 
QuestionHow to Check Printer Status using SNMP and c# Pin
batuhan karaduman11-Oct-12 22:14
batuhan karaduman11-Oct-12 22:14 
AnswerRe: How to Check Printer Status using SNMP and c# Pin
OriginalGriff12-Oct-12 1:52
mveOriginalGriff12-Oct-12 1:52 
AnswerRe: How to Check Printer Status using SNMP and c# Pin
Eddy Vluggen12-Oct-12 1:54
professionalEddy Vluggen12-Oct-12 1:54 
QuestionOpinion on Exception Pin
Richard Andrew x6411-Oct-12 15:04
professionalRichard Andrew x6411-Oct-12 15:04 
AnswerRe: Opinion on Exception Pin
Richard MacCutchan11-Oct-12 21:14
mveRichard MacCutchan11-Oct-12 21:14 
GeneralRe: Opinion on Exception Pin
Stephen Hewitt12-Oct-12 2:06
Stephen Hewitt12-Oct-12 2:06 
Quote:
The first message is a fairly common one seen when debugging and is raised when a DLL is needed and is not currently loaded.

 
That's not the case. A first chance exception is the first phase in exception handling and is intended to support debugging. When an exception occurs the debugger (if one is attached) is given first chance at handling it (this first chance mechanism is part of the exception handling process and occurs for all exceptions). The debugger can take any number of measures including stopping it proceeding any further. If the debugger allows the exception to proceed normally or one isn't present it advances to the "second chance". This is the normal application level exception processing. There is no specific DLL not loaded exception in Windows that I am aware of.
 
Quote:
First-chance exception at 0x791659f0 (clr.dll) in MyProg.exe: 0xC0000005: Access violation reading location 0x30383043.
Unhandled exception at 0x30383043 in MyProg.exe: 0xC0000005: Access violation.

Both these messages are caused by the same exception (note that both are access violations at the same address). The first line is the first chance and the second occurs after the second chance if it doesn't handle it.
 
Steve


modified 12-Oct-12 8:21am.

GeneralRe: Opinion on Exception Pin
Richard MacCutchan12-Oct-12 8:54
mveRichard MacCutchan12-Oct-12 8:54 
QuestionRe: Opinion on Exception Pin
Eddy Vluggen12-Oct-12 1:57
professionalEddy Vluggen12-Oct-12 1:57 
QuestionDisabling button not working Pin
MichCl11-Oct-12 8:13
MichCl11-Oct-12 8:13 
AnswerRe: Disabling button not working Pin
Pete O'Hanlon11-Oct-12 8:21
mvePete O'Hanlon11-Oct-12 8:21 
GeneralRe: Disabling button not working Pin
MichCl15-Oct-12 2:24
MichCl15-Oct-12 2:24 
GeneralRe: Disabling button not working Pin
Pete O'Hanlon15-Oct-12 2:26
mvePete O'Hanlon15-Oct-12 2:26 
AnswerRe: Disabling button not working Pin
Ravi Bhavnani11-Oct-12 8:47
professionalRavi Bhavnani11-Oct-12 8:47 
QuestionC# SNMP Printer! HELPPP! Pin
batuhan karaduman11-Oct-12 4:22
batuhan karaduman11-Oct-12 4:22 
AnswerRe: C# SNMP Printer! HELPPP! Pin
Eddy Vluggen11-Oct-12 4:44
professionalEddy Vluggen11-Oct-12 4:44 
AnswerRe: C# SNMP Printer! HELPPP! Pin
Wes Aday11-Oct-12 4:46
professionalWes Aday11-Oct-12 4:46 
AnswerRe: C# SNMP Printer! HELPPP! Pin
jschell11-Oct-12 8:55
jschell11-Oct-12 8:55 
AnswerRe: C# SNMP Printer! HELPPP! Pin
batuhan karaduman11-Oct-12 20:31
batuhan karaduman11-Oct-12 20:31 
AnswerRe: C# SNMP Printer! HELPPP! Pin
Marco Bertschi12-Oct-12 4:57
protectorMarco Bertschi12-Oct-12 4:57 
QuestionStoring and retrieving objects inside databse Pin
Sabry190511-Oct-12 4:08
Sabry190511-Oct-12 4:08 
AnswerRe: Storing and retrieving objects inside databse Pin
Eddy Vluggen11-Oct-12 4:43
professionalEddy Vluggen11-Oct-12 4:43 
GeneralRe: Storing and retrieving objects inside databse Pin
Sabry190511-Oct-12 7:06
Sabry190511-Oct-12 7:06 
GeneralRe: Storing and retrieving objects inside databse Pin
Eddy Vluggen11-Oct-12 9:59
professionalEddy Vluggen11-Oct-12 9:59 

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.