Hi,
I have created a new desktop in my application using the following commands.
if(newdesktopRequired)
{
hdesk=CreateDesktop(...);
SwitchDesktop(hdesk);
SetThreadDesktop(hdesk);
}
Im able to play videos using WMP programatically on current desktop but have problem when i create a new desktop and play a video. The audio is fine but the video is displayed black
When i searched google,many suggested turning off video accelerator and reduce screen resolution. Is this the problem?? Does each desktop have its own video accelerator settings??
Thanks