Click here to Skip to main content
15,914,500 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How I know CD-ROM's door is Opened or Closed? Pin
Love In Snowing30-Jan-02 21:42
Love In Snowing30-Jan-02 21:42 
GeneralRe: How I know CD-ROM's door is Opened or Closed? Pin
Jens Kreiensiek30-Jan-02 21:53
Jens Kreiensiek30-Jan-02 21:53 
AnswerRe: How I know CD-ROM's door is Opened or Closed? Pin
HintiFlo30-Jan-02 21:39
HintiFlo30-Jan-02 21:39 
GeneralUNICODE reg/ini Pin
Matt Newman30-Jan-02 13:25
Matt Newman30-Jan-02 13:25 
GeneralPlugin Architecture Pin
tdhdeep30-Jan-02 11:39
tdhdeep30-Jan-02 11:39 
GeneralRe: Plugin Architecture Pin
Roger Allen31-Jan-02 1:46
Roger Allen31-Jan-02 1:46 
QuestionFirst Chance Exceptions??? Pin
CSharpDavid30-Jan-02 11:36
CSharpDavid30-Jan-02 11:36 
AnswerRe: First Chance Exceptions??? Pin
Joaquín M López Muñoz30-Jan-02 11:57
Joaquín M López Muñoz30-Jan-02 11:57 
Exceptions are error signals raised by the system (or the program) to indicate some kind of failure (much in the same way as C++ exceptions). Exceptions cause all the nested functions that are in progress when the exception happens to exit prematurely (this is called stack unwinding).
If the program does nothing to prevent it, exceptions unwind the stack all the way down till the program terminates (and possibly some system error message box appears). A program can however catch the exception with an exception handler (__except in C, catch in C++), so preventing the program to terminate. Hopefully, the exception handler deals with the problem and keeps the program running fine.
Regardless of whether an exception is caught or not, the debugger always sees it first, and reports on the debug output window. So, what you're seeing are exceptions occuring inside the ActiveX code that are handled internally yet reported by the debugger.
The moral of this story is: if you see a first-chance exception report but the program keeps running, assume in general everything is fine and do not worry about the matter.

Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
GeneralRe: First Chance Exceptions??? Pin
CSharpDavid30-Jan-02 12:01
CSharpDavid30-Jan-02 12:01 
GeneralHelp Please : CPU usage stays at 100% Pin
Ganesh Ramaswamy30-Jan-02 10:06
Ganesh Ramaswamy30-Jan-02 10:06 
GeneralRe: Help Please : CPU usage stays at 100% Pin
Tim Smith30-Jan-02 10:32
Tim Smith30-Jan-02 10:32 
GeneralRe: Help Please : CPU usage stays at 100% Pin
Ganesh Ramaswamy30-Jan-02 10:45
Ganesh Ramaswamy30-Jan-02 10:45 
GeneralRe: Help Please : CPU usage stays at 100% Pin
Nish Nishant30-Jan-02 18:36
sitebuilderNish Nishant30-Jan-02 18:36 
GeneralRe: Help Please : CPU usage stays at 100% Pin
Joaquín M López Muñoz30-Jan-02 11:18
Joaquín M López Muñoz30-Jan-02 11:18 
GeneralRe: Help Please : CPU usage stays at 100% Pin
Ganesh Ramaswamy30-Jan-02 22:57
Ganesh Ramaswamy30-Jan-02 22:57 
GeneralRe: Help Please : CPU usage stays at 100% Pin
Jon Hulatt30-Jan-02 23:23
Jon Hulatt30-Jan-02 23:23 
GeneralSolved Pin
Ganesh Ramaswamy31-Jan-02 3:32
Ganesh Ramaswamy31-Jan-02 3:32 
QuestionIs there a way to play resource Avi's using directshow? Pin
Bart-Man30-Jan-02 10:03
Bart-Man30-Jan-02 10:03 
GeneralMDI stupid question.... Pin
Philip Patrick30-Jan-02 9:50
professionalPhilip Patrick30-Jan-02 9:50 
GeneralRe: MDI stupid question.... Pin
Joaquín M López Muñoz30-Jan-02 10:21
Joaquín M López Muñoz30-Jan-02 10:21 
GeneralRe: MDI stupid question.... Pin
Philip Patrick30-Jan-02 11:11
professionalPhilip Patrick30-Jan-02 11:11 
GeneralInterthread messaging Pin
30-Jan-02 9:20
suss30-Jan-02 9:20 
GeneralRe: Interthread messaging Pin
Joaquín M López Muñoz30-Jan-02 9:45
Joaquín M López Muñoz30-Jan-02 9:45 
GeneralRe: Interthread messaging Pin
30-Jan-02 10:09
suss30-Jan-02 10:09 
GeneralRe: Interthread messaging Pin
Joaquín M López Muñoz30-Jan-02 10:17
Joaquín M López Muñoz30-Jan-02 10:17 

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.