Problem with Bringing Window to top..!

From my dialog based application ,I invoke another 2 dialog windows .
1.First Dialog is modeless and invoked by thread .This dialog covers whole desktop area .
2.Second is a modal dialog and set as always top using follwoing function..and of 200x160 dimension.

SetWindowPos(&wndTopMost , 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);

But , now also when I click on First dialog, Second Dialog is not visible at the top.
It's hidden beneath the first one.

How can I make this second dialog always visible at the top.. in this case.?

Thanks in Advance.~
[603 byte] By [newnick] at [2007-11-18 10:00:24]
# 1 Re: Problem with Bringing Window to top..!
could you set the WS_EX_TOPMOST style ?
TheRogue at 2007-11-11 2:36:30 >
# 2 Re: Problem with Bringing Window to top..!
Thanks a lot for your suggestion..

I already tried with WS_EX_TOPMOST ..but , it doesn't work yet..

Any other idea would be appreciated..
newnick at 2007-11-11 2:37:30 >
# 3 Re: Problem with Bringing Window to top..!
Is there any solution for it.?
newnick at 2007-11-11 2:38:29 >