Click here to Skip to main content
15,918,742 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: how to store a value at the specified location in RAM. Pin
David Crow10-Nov-08 3:15
David Crow10-Nov-08 3:15 
AnswerRe: how to store a value at the specified location in RAM. Pin
Nemanja Trifunovic10-Nov-08 7:52
Nemanja Trifunovic10-Nov-08 7:52 
AnswerRe: how to store a value at the specified location in RAM. Pin
Roger Stoltz10-Nov-08 4:50
Roger Stoltz10-Nov-08 4:50 
AnswerRe: how to store a value at the specified location in RAM. Pin
Nemanja Trifunovic10-Nov-08 7:48
Nemanja Trifunovic10-Nov-08 7:48 
QuestionHelp Workshop question [SOLVED] Pin
Ahmed Charfeddine9-Nov-08 20:51
Ahmed Charfeddine9-Nov-08 20:51 
AnswerRe: Help Workshop question Pin
Iain Clarke, Warrior Programmer9-Nov-08 21:56
Iain Clarke, Warrior Programmer9-Nov-08 21:56 
GeneralRe: Help Workshop question Pin
Ahmed Charfeddine9-Nov-08 21:59
Ahmed Charfeddine9-Nov-08 21:59 
Questionclosing of a dialog box on button click problem! Pin
Dhiraj kumar Saini9-Nov-08 20:31
Dhiraj kumar Saini9-Nov-08 20:31 
AnswerRe: closing of a dialog box on button click problem! Pin
_AnsHUMAN_ 9-Nov-08 20:36
_AnsHUMAN_ 9-Nov-08 20:36 
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini9-Nov-08 20:41
Dhiraj kumar Saini9-Nov-08 20:41 
GeneralRe: closing of a dialog box on button click problem! Pin
_AnsHUMAN_ 9-Nov-08 20:47
_AnsHUMAN_ 9-Nov-08 20:47 
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini9-Nov-08 20:59
Dhiraj kumar Saini9-Nov-08 20:59 
GeneralRe: closing of a dialog box on button click problem! Pin
_AnsHUMAN_ 9-Nov-08 21:19
_AnsHUMAN_ 9-Nov-08 21:19 
GeneralRe: closing of a dialog box on button click problem! Pin
SandipG 9-Nov-08 21:26
SandipG 9-Nov-08 21:26 
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini9-Nov-08 22:23
Dhiraj kumar Saini9-Nov-08 22:23 
GeneralRe: closing of a dialog box on button click problem! Pin
enhzflep9-Nov-08 22:30
enhzflep9-Nov-08 22:30 
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini9-Nov-08 22:50
Dhiraj kumar Saini9-Nov-08 22:50 
GeneralRe: closing of a dialog box on button click problem! Pin
enhzflep9-Nov-08 22:57
enhzflep9-Nov-08 22:57 
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini9-Nov-08 23:05
Dhiraj kumar Saini9-Nov-08 23:05 
GeneralRe: closing of a dialog box on button click problem! Pin
Iain Clarke, Warrior Programmer10-Nov-08 0:00
Iain Clarke, Warrior Programmer10-Nov-08 0:00 
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini10-Nov-08 0:52
Dhiraj kumar Saini10-Nov-08 0:52 
GeneralRe: closing of a dialog box on button click problem! Pin
Iain Clarke, Warrior Programmer10-Nov-08 1:20
Iain Clarke, Warrior Programmer10-Nov-08 1:20 
Well, your dialog is starting (which is good news), but it is also finishing too early.

You need to find out why it's finishing early then. Ask yourself what you know about stopping dialog. Maybe the OnInitDialog is not working correctly. Maybe something in your code is stopping the dialog? Try a breakpoint in CDialog::EndDialog - it could tell you which bit of your code is killing the dialog. Same with OnClose...

If you still can't find it, comment out 99% of the dialog code until it stays up. Then start putting code back again until it breaks.

This is going to be a pain to track down, but none of it is rocket science. Just plod through your code until you find the offending line or two.

Iain.
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini10-Nov-08 2:00
Dhiraj kumar Saini10-Nov-08 2:00 
AnswerRe: closing of a dialog box on button click problem! Pin
David Crow10-Nov-08 3:23
David Crow10-Nov-08 3:23 
GeneralRe: closing of a dialog box on button click problem! Pin
Dhiraj kumar Saini10-Nov-08 18:14
Dhiraj kumar Saini10-Nov-08 18:14 

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.