hello,

I'm trying to simultaneously open two borderless windows in Lite-c (running on Vista) with the following code:

void main()
{
wait(1);
video_window(vector(200,0,0),vector(200,1000,0),1,NULL);
video_window(vector(400,0,0),vector(200,1000,0),1,NULL);
}

The problem is that I only see the second window, and I want to see both of them. Who can solve this riddle?



thanks in advance,