I still get the same result on both pictureBox1 & 2. However, if I delay 80ms. using timer, the result should be fine. However, it causing a delay in mediaPlayer1
Bitmap A = mediaPlayer1.Frame_GetCurrent();
Bitmap tmpA = new Bitmap(A);
pictureBox1.Image = tmpA;
mediaPlayer1.Position_Set_Time(mediaPlayer1.Position_Get_Time() + 350);
A = mediaPlayer1.Frame_GetCurrent();
Bitmap tmpB = new Bitmap(A);
pictureBox2.Image = tmpB;
Is there more things, I should do.