I'm selecting a cell in my DataGridView programmatically:
myDataGridView.CurrentCell = myDataGridView.Rows[index].Cells[0];
/* The codes is here is not executed */
MessageBox.Show("Here");
my first column (column with 0 index) is hidden and when this line of code is executed, it shows undefined behavior(don't execute the continuous of method). Is this normal?
Edit: My Question changed to why this unhandled exception is not caught by Visual Studio?