Gracias por responder, al final lo resolvi así, lo pongo por si le sirve a alguien
Metí este código por ejemplo en el evento DoubleClick del DataGridView
Cita: Int32 selectedCellCount =
this.GvPrincipal.GetCellCount(DataGridViewElementS tates.Selected);
for (int j = 0;
j < selectedCellCount; j++)
{
string Fila = GvPrincipal.SelectedCells[j].RowIndex.ToString();
string Columna = GvPrincipal.SelectedCells[j].ColumnIndex.ToString();
}
saludos