Tagged Questions
The dialogbasedapp tag has no wiki summary.
2
votes
2answers
2k views
Why doesn't OnKeyDown catch key events in a dialog-based MFC project?
I just create a dialog-based project in MFC (VS2008) and add OnKeyDown event to the dialog.
When I run the project and press the keys on the keyboard, nothing happens. But, if I remove all the ...
2
votes
4answers
1k views
How do I force my app to come to the front and take focus?
I'm working on an application that happens to be the bootstrap for an installer that I'm also working on. The application makes a few MSI calls to get information that I need for putting together the ...
0
votes
2answers
427 views
draw simple rectangle in MFC Dialog-Based
I wrote this code to draw a simple rectangle in a dialog , I also added ON_WM_PAINT() to my message map. but it didnt show anything on dialog to me ! I really appreciate it if anyone could tell my ...
0
votes
2answers
440 views
can we draw shapes (line,circle , etc.) in dialog-based mfc visual studio 2010?
I want to implement an oscilloscope to display some different frequency via dialog-based MFC visual c++, but as I googling too much , I found out that the only way to drawing shapes in visual c++ is ...
0
votes
1answer
172 views
OnCtrlColor Not Working?
I used the following overloaded method to change the text color to red in a listbox, in a Visual C++ MFC dialog based application. When I build the program in DEBUG mode, it works perfectly. But when ...