Creating a window ! simple problem provided you know the right track
-
Hi Everybody ! I want a discuss the problem that I am facing here it goes .. I have to display a window in the air , it should ideally be a Dialog box becoz this window would be containign many controls . BUT ! this window should not have the tile bar nor the borders nothing !! till here its easy .. the problem is after that .. Problem is I dont want the parent window to loose the control .. that is title bar of the parent window should never become inactive when our window is created and our window should be able to react to messages .. like mouse click , mouse move .. See are you able to understand the problem ?? Please add your valuable comments. Abhishek Narula "Learn to appreciate others ... World would appreciate you"
-
Hi Everybody ! I want a discuss the problem that I am facing here it goes .. I have to display a window in the air , it should ideally be a Dialog box becoz this window would be containign many controls . BUT ! this window should not have the tile bar nor the borders nothing !! till here its easy .. the problem is after that .. Problem is I dont want the parent window to loose the control .. that is title bar of the parent window should never become inactive when our window is created and our window should be able to react to messages .. like mouse click , mouse move .. See are you able to understand the problem ?? Please add your valuable comments. Abhishek Narula "Learn to appreciate others ... World would appreciate you"
What you seem to looking for is a modeless dialog. Read this article to get an idea about creating modeless dialogs. It was written by one of the nicest people I know of. Just kidding. But I do hope the article helps you with regard to what you are looking for. http://www.codeproject.com/useritems/gettingmodeless.asp Regards Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
-
What you seem to looking for is a modeless dialog. Read this article to get an idea about creating modeless dialogs. It was written by one of the nicest people I know of. Just kidding. But I do hope the article helps you with regard to what you are looking for. http://www.codeproject.com/useritems/gettingmodeless.asp Regards Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
Thanks for replying .. but this is not what I am looking for .. Moment you click on your modeless dialog, the parent window gets inactive ..and this is waht I dont want ! I hope you have understood it now . Let me know if you know about some more articles .. Abhishek Narula "Learn to appreciate others ... World would appreciate you"
-
Thanks for replying .. but this is not what I am looking for .. Moment you click on your modeless dialog, the parent window gets inactive ..and this is waht I dont want ! I hope you have understood it now . Let me know if you know about some more articles .. Abhishek Narula "Learn to appreciate others ... World would appreciate you"
Abhishek Narula wrote: Moment you click on your modeless dialog, the parent window gets inactive That's default windows behaviour. The currently active window will also be shown as active. And only one window, whether modal or modeless, will be active at a time. Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut