0
I have a table called tournaments that shows the type of game, the name of the tournament and the date.
I want you to do double click in the cell of the type of game open the teams of this type of game.
private void Dgv1_CellMouseDoubleClick(Object sender, DataGridViewCellMouseEventArgs e)
{
EquipasLOL Tela = new EquipasLOL();
Tela.Show();
this.Hide();
}
Hello @Jose. Edit your question and enter your code, otherwise it will be difficult to help without having a base!
– João Martins