Hi Guys
i am working on quiz test,but i have stuck on next flag question button ,my code is not working at all.Can any body assist me please
private void btnNextFlagQuestion_Click(object sender, EventArgs e)
{
i=0;
for(i = 0; i<10;i++)
if(i<10)
MessageBox.Show ("messagebox you have finished" );
}
if (User_Answer[] != Correct_Answer[])
{
textBox1.Text = (i + 1) + ". " + Questions[i];
radioButton1.Text = option1[i];
radioButton2.Text = option2[i];
radioButton3.Text = option3[i];
radioButton4.Text = option4[i];
btnFinish.Enabled = true;
i++;
}
if ((radioButton1.Checked) || (radioButton2.Checked) || (radioButton3.Checked) || (radioButton4.Checked) || (chkFlagQuestion.Checked))
}
}
}
}
}