display window in full screen format
-
I am using MDI Doc- View architecture. I want to display a new window( Not an MDI Child Window) in full screen format so that i can display GDI information on this window.This new window should close/destroy on mouse click or keyboard hit. Can anyone give me some laiju
-
I am using MDI Doc- View architecture. I want to display a new window( Not an MDI Child Window) in full screen format so that i can display GDI information on this window.This new window should close/destroy on mouse click or keyboard hit. Can anyone give me some laiju
laiju wrote: I want to display a new window( Not an MDI Child Window) in full screen... Look near the bottom of the app's
InitInstance()
method. There is a call toShowWindow()
there that you can change.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
I am using MDI Doc- View architecture. I want to display a new window( Not an MDI Child Window) in full screen format so that i can display GDI information on this window.This new window should close/destroy on mouse click or keyboard hit. Can anyone give me some laiju
-
laiju wrote: I want to display a new window( Not an MDI Child Window) in full screen... Look near the bottom of the app's
InitInstance()
method. There is a call toShowWindow()
there that you can change.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
thanx..how do i restore this window into its previous state on mouse click or keyboard hit. laiju
You'll need to save the frame's initial size with
GetWindowRect()
.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown