Click here to Skip to main content
15,891,184 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to convert my MDI Application to open each window as a separate instance of the application Pin
manoharbalu23-Oct-20 0:09
manoharbalu23-Oct-20 0:09 
AnswerRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
trønderen23-Oct-20 0:34
trønderen23-Oct-20 0:34 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
manoharbalu23-Oct-20 0:49
manoharbalu23-Oct-20 0:49 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
trønderen23-Oct-20 8:04
trønderen23-Oct-20 8:04 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
Victor Nijegorodov23-Oct-20 8:35
Victor Nijegorodov23-Oct-20 8:35 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
trønderen23-Oct-20 9:32
trønderen23-Oct-20 9:32 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
Victor Nijegorodov23-Oct-20 10:26
Victor Nijegorodov23-Oct-20 10:26 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
manoharbalu26-Oct-20 0:07
manoharbalu26-Oct-20 0:07 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
Victor Nijegorodov26-Oct-20 0:34
Victor Nijegorodov26-Oct-20 0:34 
GeneralRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
manoharbalu23-Oct-20 2:35
manoharbalu23-Oct-20 2:35 
SuggestionRe: How to convert my MDI Application to open each window as a separate instance of the application Pin
David Crow23-Oct-20 2:46
David Crow23-Oct-20 2:46 
Questionqueues to find minimum time to serve all. Pin
fecomevi21-Oct-20 22:22
fecomevi21-Oct-20 22:22 
AnswerRe: queues to find minimum time to serve all. Pin
trønderen22-Oct-20 0:04
trønderen22-Oct-20 0:04 
AnswerRe: queues to find minimum time to serve all. Pin
Richard MacCutchan22-Oct-20 0:16
mveRichard MacCutchan22-Oct-20 0:16 
QuestionRe: queues to find minimum time to serve all. Pin
David Crow22-Oct-20 3:58
David Crow22-Oct-20 3:58 
QuestionAbort Retry and Ignore and SEH Pin
ForNow19-Oct-20 15:57
ForNow19-Oct-20 15:57 
AnswerRe: Abort Retry and Ignore and SEH Pin
Victor Nijegorodov19-Oct-20 20:49
Victor Nijegorodov19-Oct-20 20:49 
AnswerRe: Abort Retry and Ignore and SEH Pin
Richard MacCutchan19-Oct-20 21:21
mveRichard MacCutchan19-Oct-20 21:21 
GeneralRe: Abort Retry and Ignore and SEH Pin
trønderen19-Oct-20 22:28
trønderen19-Oct-20 22:28 
There is no such thing as "Abort Retry Ignore" per se.
The closest I can think of is one old machine I knew: A fault handler would receive the address of the faulting instruction and a pointer to the register block, with the program pointer set to the following instruction. So, default handler return was "Ignore". Copying the faulting address to the program counter before handler return would be "Retry" at instruction level. Copying the return address from the stack frame pointed to by SP would be "Abort" at the function call level. (The handler could traverse the stack to find an outer return address.)

This is "Abort Retry Ignore" at instuction level, not directly appliccable to SEH. Actually, I am not certain that compiler writers made much use of the mechanisms at all. This machine offered several other features intended to make life easier for the software, but the software guys said "Nah. We'll do it our own way".
GeneralRe: Abort Retry and Ignore and SEH Pin
ForNow20-Oct-20 1:41
ForNow20-Oct-20 1:41 
GeneralRe: Abort Retry and Ignore and SEH Pin
trønderen20-Oct-20 5:20
trønderen20-Oct-20 5:20 
GeneralRe: Abort Retry and Ignore and SEH Pin
ForNow20-Oct-20 1:42
ForNow20-Oct-20 1:42 
GeneralRe: Abort Retry and Ignore and SEH Pin
Richard MacCutchan20-Oct-20 2:50
mveRichard MacCutchan20-Oct-20 2:50 
GeneralRe: Abort Retry and Ignore and SEH Pin
ForNow20-Oct-20 3:14
ForNow20-Oct-20 3:14 
GeneralRe: Abort Retry and Ignore and SEH Pin
Greg Utas20-Oct-20 3:32
professionalGreg Utas20-Oct-20 3:32 

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.