Click here to Skip to main content
15,894,291 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: FindWindowEx, 'handle' and notepad.exe Pin
Adam Roderick J22-Oct-09 18:23
Adam Roderick J22-Oct-09 18:23 
GeneralRe: FindWindowEx, 'handle' and notepad.exe Pin
Ismaele.Jr1-Dec-09 0:45
Ismaele.Jr1-Dec-09 0:45 
GeneralRe: FindWindowEx, 'handle' and notepad.exe Pin
Ismaele.Jr1-Dec-09 0:45
Ismaele.Jr1-Dec-09 0:45 
QuestionDoes CDialog Constructer with nidTemplate attach a Window Pin
ForNow21-Oct-09 6:23
ForNow21-Oct-09 6:23 
AnswerRe: Does CDialog Constructer with nidTemplate attach a Window Pin
Code-o-mat21-Oct-09 11:07
Code-o-mat21-Oct-09 11:07 
AnswerRe: Does CDialog Constructer with nidTemplate attach a Window Pin
Randor 21-Oct-09 11:22
professional Randor 21-Oct-09 11:22 
GeneralRe: Does CDialog Constructer with nidTemplate attach a Window Pin
ForNow21-Oct-09 12:57
ForNow21-Oct-09 12:57 
GeneralRe: Does CDialog Constructer with nidTemplate attach a Window Pin
Randor 21-Oct-09 13:26
professional Randor 21-Oct-09 13:26 
Hi ForNow,

ForNow wrote:
The CDialog constructer with no paramters e.g. CDialog() is meant for modeless


The empty CDialog() constructor is not "meant for modeless". The CDialog could potentially be modal if DoModal() is called. Modality is not directly related to the constructor.


ForNow wrote:
Later The Create with the nidTemplate Creates the or Attaches the Window


Yes, this is correct. Smile | :)


ForNow wrote:
for Modal the CDialog Constructer with the resource id Creates or Attaches the Window

the Window is alive DoModal just Displays


No, this is incorrect. Take for example:

C++
<pre>CDialog Dlg(IDD_ABOUTBOX,this);</pre><br />
<br />
All you are doing here is allocating the CDialog object and assigning the template resource ID. The window handle will be NULL until it is created.<br />
<br />
Best Wishes,<br />
-David Delaune

GeneralRe: Does CDialog Constructer with nidTemplate attach a Window Pin
ForNow21-Oct-09 14:20
ForNow21-Oct-09 14:20 
QuestionFull Screen Pin
MrMcIntyre21-Oct-09 5:33
MrMcIntyre21-Oct-09 5:33 
AnswerRe: Full Screen Pin
Richard MacCutchan21-Oct-09 6:22
mveRichard MacCutchan21-Oct-09 6:22 
GeneralRe: Full Screen Pin
MrMcIntyre21-Oct-09 6:27
MrMcIntyre21-Oct-09 6:27 
GeneralRe: Full Screen Pin
Richard MacCutchan21-Oct-09 10:44
mveRichard MacCutchan21-Oct-09 10:44 
GeneralRe: Full Screen Pin
MrMcIntyre21-Oct-09 10:54
MrMcIntyre21-Oct-09 10:54 
GeneralRe: Full Screen Pin
Richard MacCutchan21-Oct-09 12:10
mveRichard MacCutchan21-Oct-09 12:10 
GeneralRe: Full Screen - I may regret this Pin
Richard MacCutchan21-Oct-09 13:09
mveRichard MacCutchan21-Oct-09 13:09 
JokeRe: Full Screen Pin
David Crow21-Oct-09 17:01
David Crow21-Oct-09 17:01 
QuestionFull Screen Pin
MrMcIntyre21-Oct-09 5:28
MrMcIntyre21-Oct-09 5:28 
QuestionRe: Full Screen Pin
David Crow21-Oct-09 5:36
David Crow21-Oct-09 5:36 
AnswerRe: Full Screen Pin
MrMcIntyre21-Oct-09 5:58
MrMcIntyre21-Oct-09 5:58 
GeneralRe: Full Screen Pin
David Crow21-Oct-09 6:00
David Crow21-Oct-09 6:00 
GeneralRe: Full Screen Pin
MrMcIntyre21-Oct-09 6:11
MrMcIntyre21-Oct-09 6:11 
QuestionRe: Full Screen Pin
David Crow21-Oct-09 6:14
David Crow21-Oct-09 6:14 
AnswerRe: Full Screen Pin
MrMcIntyre21-Oct-09 6:16
MrMcIntyre21-Oct-09 6:16 
QuestionRe: Full Screen Pin
David Crow21-Oct-09 6:31
David Crow21-Oct-09 6:31 

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.