I have a lot of code like this and it usually works
private void button_Click(object sender, EventArgs e)
{
try
{
DialogResult result;
result = MessageBox.Show( "Questa operazione potrebbe richiedere alcuni minuti,\r\nsei sicuro di voler continuare?", "Attenzione", MessageBoxButtons.YesNo, MessageBoxIcon.Warning );
if ( result == System.Windows.Forms.DialogResult.Yes )
{
DoSomething();
}
else
{
DoSomethingElse();
}
}
Catch (Exception ex)
{
LogExceptio(ex);
}
}
but for some reason on a specific Windows Form the MessageBox is not showing.
If I press Enter it proceed like I have made a click on YES;
If I press the ALT key the MessageBox magically appear on the screen.
Any idea? What can I do to solve this issue?
FormI have aDataGridViewand seems that theMessageBoxissue append only if I have some colored row, that I color inRowPrePaintevent. – Shyguy Nov 20 '12 at 8:35DataRow.Cells["cell"].Value = false;in myDataGridView_RowPrePaintand all is working as it have to. – Shyguy Nov 20 '12 at 9:38