May 23, 2002 #1 CetGabbe Programmer Joined Apr 12, 2002 Messages 18 Location SE Good morning. I wonder how I can maximize a child window so it's maximized from the start, and so that the user wont be able to resize the window. greets CetGabbe.
Good morning. I wonder how I can maximize a child window so it's maximized from the start, and so that the user wont be able to resize the window. greets CetGabbe.
May 23, 2002 #2 Hylsan Programmer Joined Mar 20, 2002 Messages 43 Location SE to maximize it from start just use; SW_SHOW(MAXIMIZE); if you use DoModal put it in the new windows init function, or if modeless right after Create(); im not 100% sure, so correct me if im wrong, tho i think that answers your question.. /Hylsan Upvote 0 Downvote
to maximize it from start just use; SW_SHOW(MAXIMIZE); if you use DoModal put it in the new windows init function, or if modeless right after Create(); im not 100% sure, so correct me if im wrong, tho i think that answers your question.. /Hylsan