to make maximize windows by default
-
hi all..I am making a dialog based application and I want to make the windows size is in maximize size by default and I also want the windows can redraw itself when I resize the windows and play with the scroll, but I don't know hoe to...pls help
-
hi all..I am making a dialog based application and I want to make the windows size is in maximize size by default and I also want the windows can redraw itself when I resize the windows and play with the scroll, but I don't know hoe to...pls help
Write this in OnInitDialog to show it as maximized. this->ShowWindow(SW_MAXIMIZE); To handle redrawing functionality you will have to write your code in OnPaint. Einstein: "Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe." My Articles
-
Write this in OnInitDialog to show it as maximized. this->ShowWindow(SW_MAXIMIZE); To handle redrawing functionality you will have to write your code in OnPaint. Einstein: "Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe." My Articles
thx...btw where I can get some examples of redrawing functionality, because I am a newbie... thx..