Click here to Skip to main content
15,921,694 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Retriving Column Names of a table Pin
prasad_som16-Nov-06 19:17
prasad_som16-Nov-06 19:17 
QuestionCode needed for Digital signature verification in VC++ Pin
Prinky16-Nov-06 18:28
Prinky16-Nov-06 18:28 
AnswerRe: Code needed for Digital signature verification in VC++ Pin
Christian Graus16-Nov-06 21:45
protectorChristian Graus16-Nov-06 21:45 
AnswerRe: Code needed for Digital signature verification in VC++ Pin
Mark Salsbery17-Nov-06 4:25
Mark Salsbery17-Nov-06 4:25 
AnswerRe: Code needed for Digital signature verification in VC++ Pin
cmk17-Nov-06 18:15
cmk17-Nov-06 18:15 
GeneralRe: Code needed for Digital signature verification in VC++ Pin
Prinky19-Nov-06 19:21
Prinky19-Nov-06 19:21 
Questionproblem in attatching SOCKET handle to CSocket object Pin
ramana.g16-Nov-06 17:47
ramana.g16-Nov-06 17:47 
AnswerRe: problem in attatching SOCKET handle to CSocket object Pin
Viorel.16-Nov-06 22:25
Viorel.16-Nov-06 22:25 
I would suggest you to check if the SOCKET handle, obtained by Accept and then passed to your thread, is valid, i.e. is not "-1". Then put a breakpoint at Attach line and then continue execution using Step Into (F11). You should see the MFC source code and found the cause of the exception.

In order to catch the exception, try a different declaration:
try
{
    . . .
}
catch( const CException * e)
{
    . . .
}
catch( const CException & e)
{
    . . .
}

I hope this helps.
AnswerRe: problem in attatching SOCKET handle to CSocket object Pin
Mark Salsbery17-Nov-06 4:34
Mark Salsbery17-Nov-06 4:34 
GeneralRe: problem in attatching SOCKET handle to CSocket object Pin
ramana.g19-Nov-06 17:41
ramana.g19-Nov-06 17:41 
GeneralRe: problem in attatching SOCKET handle to CSocket object Pin
Mark Salsbery20-Nov-06 5:10
Mark Salsbery20-Nov-06 5:10 
GeneralRe: problem in attatching SOCKET handle to CSocket object Pin
ramana.g20-Nov-06 16:58
ramana.g20-Nov-06 16:58 
GeneralRe: problem in attatching SOCKET handle to CSocket object Pin
Mark Salsbery21-Nov-06 6:07
Mark Salsbery21-Nov-06 6:07 
GeneralRe: problem in attatching SOCKET handle to CSocket object Pin
ramana.g21-Nov-06 19:19
ramana.g21-Nov-06 19:19 
GeneralRe: problem in attatching SOCKET handle to CSocket object Pin
Mark Salsbery22-Nov-06 6:01
Mark Salsbery22-Nov-06 6:01 
QuestionHow can I disable the Ecs key for a printpreview view? Pin
min_2_max16-Nov-06 17:08
min_2_max16-Nov-06 17:08 
AnswerRe: How can I disable the Ecs key for a printpreview view? Pin
min_2_max16-Nov-06 17:53
min_2_max16-Nov-06 17:53 
GeneralRe: How can I disable the Ecs key for a printpreview view? Pin
graceleee16-Nov-06 22:12
graceleee16-Nov-06 22:12 
GeneralRe: How can I disable the Ecs key for a printpreview view? Pin
min_2_max20-Nov-06 2:30
min_2_max20-Nov-06 2:30 
QuestionGame controller Pin
Oliver12316-Nov-06 16:54
Oliver12316-Nov-06 16:54 
AnswerRe: Game controller Pin
Christian Graus16-Nov-06 17:42
protectorChristian Graus16-Nov-06 17:42 
QuestionMemory Optimization Problem Pin
DavidRipple16-Nov-06 15:59
DavidRipple16-Nov-06 15:59 
AnswerRe: Memory Optimization Problem Pin
Christian Graus16-Nov-06 16:10
protectorChristian Graus16-Nov-06 16:10 
AnswerRe: Memory Optimization Problem Pin
DavidRipple16-Nov-06 16:30
DavidRipple16-Nov-06 16:30 
GeneralRe: Memory Optimization Problem Pin
David Crow17-Nov-06 3:57
David Crow17-Nov-06 3:57 

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.