Ejemplo n.º 1
0
        private void Button10_Click(object sender, EventArgs e)
        {
            int          turnirId = Int32.Parse(listView1.SelectedItems[0].SubItems[0].Text);
            DodajPartiju forma    = new DodajPartiju(turnirId);

            forma.ShowDialog();
        }
Ejemplo n.º 2
0
        private void Button10_Click_1(object sender, EventArgs e)
        {
            if (listView1.SelectedItems.Count == 0)
            {
                MessageBox.Show("Odaberite turnir kome zelite dodati partiju!");
                return;
            }

            int          turnirId = Int32.Parse(listView1.SelectedItems[0].SubItems[0].Text);
            DodajPartiju forma    = new DodajPartiju(turnirId);

            forma.ShowDialog();
        }