guyz mao ni ako gi try using timer...but wala lagi effect....100 miliseconds ako interval pero di lagi siya mo work
Code:
private void timer1_Tick(object sender, EventArgs e)
{
ctr = ctr + 1;
if (ctr == 1)
{
pictureBox1.Visible = true;
pictureBox2.Visible = false;
pictureBox3.Visible = false;
}
if (ctr == 2)
{
pictureBox1.Visible = false;
pictureBox2.Visible = true;
pictureBox3.Visible = false;
}
if (ctr == 3)
{
pictureBox1.Visible = false;
pictureBox2.Visible = false;
pictureBox3.Visible = true;
}
if (ctr == 3)
{
ctr = 1;
}
}