I strike again!
I had posted a little while ago about one of my sub dialogs popping up and being always on top. I am still having the same problem. I have a main dialog that shows. Then I call another dialog through:
The window shows up and is always on top even when it loses focus (stays on top but the title bar is dimmed). I have tried playing with the three states of the windows (POPUP,CHILD,OVERLAPPED) and none of them solve this problem.
What could it be?
Thanks,
Ron
/**************
Me: When will the project be finished?
Them: What project?
Me: The one you have been working on for the last 3 years!
Them: Ohh, we can't finish it?
Me: Why?
Them: We don't know how to program...
I had posted a little while ago about one of my sub dialogs popping up and being always on top. I am still having the same problem. I have a main dialog that shows. Then I call another dialog through:
Code:
[blue]
CMyDialog *Test;
Test = new CMyDialog(this);
Test->CREATE(IDD_MYDIALOG,this);
Test->ShowWindow(1);
[/blue]
The window shows up and is always on top even when it loses focus (stays on top but the title bar is dimmed). I have tried playing with the three states of the windows (POPUP,CHILD,OVERLAPPED) and none of them solve this problem.
What could it be?
Thanks,
Ron
/**************
Me: When will the project be finished?
Them: What project?
Me: The one you have been working on for the last 3 years!
Them: Ohh, we can't finish it?
Me: Why?
Them: We don't know how to program...