Paste this before the save code and try modifying the first row in the DataGridView(I am assuming that you have two or more rows),
int selectIndex = this.listBox1.SelectedIndex;
this.listBox1.SelectedIndex = 1;
this.listBox1.SelectedIndex = selectIndex;
Regards,
Camilo