I have issue in my code, it doesn't works, look at code: What is wrong? I've found this:
if (pictureBox1.Image.Equals(Q))
{
--stav;
}
It should do something like this
if (pictureBox1.Image == ProjectName.Properties.Resources.Q)
{
}
My question is, how to make something like if (pictureBox1.Image == ProjectName.....) Thanks
PROBLEM SOLVED!