Eki Görüntüle 1127095
Her neyse şimdilik farklı bir yerden çalıştırarak sorunu çözdüm ama rica etsem bu kodda ne hata var söyler misiniz?
Orta true olup, iyi false olsa bile 5.resimi gösteriyor.
[CODE lang="csharp" title="kod"] if (iyi = true) else { if (berbat = true) { pictureBox1.Image = Properties.Resources._2; } } } }if (iyi = true)
{
pictureBox1.Image = Properties.Resources._5;
}
else.
{
if (orta = true)
{
pictureBox1.Image = Properties.Resources._4;
}
else.
{
if (kotu = true)
{
pictureBox1.Image = Properties.Resources._3;
}
else.
{
if (berbat = true)
{
pictureBox1.Image = Properties.Resources._2;
}
}
}
}[/CODE]