Hi All,
I just created a simple displaying of photos in a CLR window form application just like a slideshow of photos. With the code below that is within a button_click, however the form will displayed only the last pic (picgen(3)) after all the sleep time of 4.5s. What should i do for it to display each photo just before each sleep() time?
picgen(1);
Sleep(1000);
picgen(0);
Sleep(1500);
picgen(1);
Sleep(2000);
picgen(3);