private void btnTrazi_Click(object sender, EventArgs e)

        {
            //if (this.ValidateChildren(ValidationConstraints.Enabled))
            //{
            //    dataGridViewNekretnine.DataSource = DANekretnine.getPretraga(Convert.ToInt32(comboBoxKategorije.SelectedValue), Convert.ToInt32(comboVrste.SelectedValue), checkBoxAktivna.Checked);
            //}
            //else
            if (comboBoxKategorije.SelectedIndex == 0 && comboVrste.SelectedIndex == 0 && checkBoxAktivna.Checked == false)
            {
                dataGridViewNekretnine.DataSource = DANekretnine.nekretnineAll();
            }

            else
            {
                dataGridViewNekretnine.DataSource = DANekretnine.getPretraga(Convert.ToInt32(comboBoxKategorije.SelectedValue), Convert.ToInt32(comboVrste.SelectedValue), checkBoxAktivna.Checked);
            }
        }