Exemplo n.º 1
0
        private void nazajbutton_Click(object sender, EventArgs e)
        {
            clanipodatki cp = new clanipodatki(id);

            cp.Show();
            this.Close();
        }
Exemplo n.º 2
0
 private void usersgrid_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     if (e.ColumnIndex == 4)
     {
         int          id = Convert.ToInt32(usersgrid.Rows[e.RowIndex].Cells[5].Value);
         clanipodatki cp = new clanipodatki(id);
         cp.Show();
         this.Close();
     }
 }