Click to See Complete Forum and Search --> : Full Screen


Nathan Strandberg
June 10th, 1999, 08:39 AM
How can I make my dialog become a full screen dlg? Also how can I make a movie control (On the dlg) fit the dlg completly?

Thanks!
Nathan Strandberg

Wayne Fuller
June 10th, 1999, 08:54 AM
Override the OnSize message like this.
void CMyDialog::OnSize( UINT nType, int cx, int cy )
{
m_Movie.MoveWindow(0, 0, cx, cy);
}



Hope that helps,

Wayne