Click here to Skip to main content
15,881,715 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I use mciSend command to set a window for my movie open by mcisendcommand:
MCI_DGV_WINDOW_PARMS mciWindow;
mciWindow.hWnd = hWnd;
mciSendCommand(mciDevId, MCI_WINDOW,MCI_DGV_WINDOW_HWND, (DWORD)(LPSTR)&mciWindow);


hWnd is a handle of window is created:
HWND hWnd =  CreateWindow(_T("BUTTON"),_T(""), WS_CHILD | WS_VISIBLE | SS_CENTER, 10, 10, rect.right/2,rect.bottom -130, hParent, NULL, hInstance, NULL);


but my movie is open with its default size, bigger than window hWnd. how i can set it as large as hWnd.
Thanks for help!
Posted
Updated 1-May-10 21:59pm
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900