Click here to Skip to main content
15,907,329 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Moving dailog box by clicking anywhere not only on caption bar? Pin
«_Superman_»14-Jan-09 22:40
professional«_Superman_»14-Jan-09 22:40 
AnswerRe: Moving dailog box by clicking anywhere not only on caption bar? Pin
Nishad S14-Jan-09 19:33
Nishad S14-Jan-09 19:33 
AnswerRe: Moving dailog box by clicking anywhere not only on caption bar? Pin
Jijo.Raj14-Jan-09 21:49
Jijo.Raj14-Jan-09 21:49 
QuestionError LNK2005 ( extern variable) Pin
Arif Liminto14-Jan-09 15:17
professionalArif Liminto14-Jan-09 15:17 
AnswerRe: Error LNK2005 ( extern variable) Pin
«_Superman_»14-Jan-09 16:51
professional«_Superman_»14-Jan-09 16:51 
GeneralRe: Error LNK2005 ( extern variable) Pin
Arif Liminto14-Jan-09 17:03
professionalArif Liminto14-Jan-09 17:03 
QuestionHow to debug a program for unknown error?? Pin
Kiran Satish14-Jan-09 12:11
Kiran Satish14-Jan-09 12:11 
AnswerRe: How to debug a program for unknown error?? Pin
Stephen Hewitt14-Jan-09 13:51
Stephen Hewitt14-Jan-09 13:51 
I've seen this happen when an exception is raised and the EXCEPTION_REGISTRATION linked list is corrupt. See here[^] for more information. The following program demonstrates this (it's from memory so bear with me):
void main()
{
	// Corrupt 'EXCEPTION_REGISTRATION' linked list. Here we corrupt the
	// head pointer, but in real life it's more likely a corruption of the
	// chain itself on the stack.
	__asm
	{
		 mov eax, 0
		 mov FS:[0], eax
	}
 
	// Generate an exception.
	*(char*)0 = 0;
 
	return 0;
}


Steve

AnswerRe: How to debug a program for unknown error?? Pin
Randor 14-Jan-09 14:50
professional Randor 14-Jan-09 14:50 
GeneralRe: How to debug a program for unknown error?? Pin
Kiran Satish14-Jan-09 15:52
Kiran Satish14-Jan-09 15:52 
GeneralRe: How to debug a program for unknown error?? Pin
Stephen Hewitt14-Jan-09 18:19
Stephen Hewitt14-Jan-09 18:19 
GeneralRe: How to debug a program for unknown error?? Pin
Kiran Satish15-Jan-09 9:49
Kiran Satish15-Jan-09 9:49 
GeneralRe: How to debug a program for unknown error?? Pin
Randor 15-Jan-09 12:57
professional Randor 15-Jan-09 12:57 
GeneralRe: How to debug a program for unknown error?? [modified] Pin
Kiran Satish15-Jan-09 13:46
Kiran Satish15-Jan-09 13:46 
QuestionRe: How to debug a program for unknown error?? Pin
Randor 15-Jan-09 16:20
professional Randor 15-Jan-09 16:20 
QuestionProgramming Cell Phone with MIDP on C-language Pin
Michael Monin14-Jan-09 10:20
Michael Monin14-Jan-09 10:20 
AnswerCP IGNORE - Not a question. Pin
leckey14-Jan-09 11:02
leckey14-Jan-09 11:02 
JokeThis is a question Pin
Luc Pattyn14-Jan-09 12:52
sitebuilderLuc Pattyn14-Jan-09 12:52 
JokeRe: This is a question Pin
Hamid_RT14-Jan-09 18:44
Hamid_RT14-Jan-09 18:44 
JokeRe: This is a question Pin
CPallini14-Jan-09 21:33
mveCPallini14-Jan-09 21:33 
RantMy vote of 1 Pin
CPallini14-Jan-09 21:28
mveCPallini14-Jan-09 21:28 
GeneralRe: My vote of 1 Pin
Luc Pattyn15-Jan-09 1:15
sitebuilderLuc Pattyn15-Jan-09 1:15 
QuestionView activation Pin
Member 465568514-Jan-09 4:25
Member 465568514-Jan-09 4:25 
AnswerRe: View activation Pin
Iain Clarke, Warrior Programmer14-Jan-09 4:28
Iain Clarke, Warrior Programmer14-Jan-09 4:28 
GeneralRe: View activation Pin
Member 465568514-Jan-09 23:24
Member 465568514-Jan-09 23:24 

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.