예제 #1
0
 private void dgSubastasGanadas_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
 {
     if (e.ColumnIndex == 0)
     {
         VerPublicacion formP1 = new VerPublicacion(Convert.ToInt32(dgSubastasGanadas.Rows[e.RowIndex].Cells[2].Value));
         formP1.Show();
     }
 }
예제 #2
0
 private void dgSubastasGanadas_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     if (e.ColumnIndex == 0)
     {
         //MessageBox.Show((e.RowIndex + 1) + " Fila " + (e.ColumnIndex + 1) + " Columna");
         //MessageBox.Show("Cod_Publicacion = " + dgSubastasGanadas.Rows[e.RowIndex].Cells[2].Value.ToString());
         VerPublicacion formP1 = new VerPublicacion(Convert.ToInt32(dgSubastasGanadas.Rows[e.RowIndex].Cells[2].Value));
         formP1.Show();
     }
 }