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
Printable View
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
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