Exemple #1
0
        private void txtKorisnik_TextChanged(object sender, EventArgs e)
        {
            bool dane = Int32.TryParse((txtKorisnik.Text), out korisnik);

            if (dane)
            {
                OsvjeziListu();
            }
            if (txtKorisnik.Text != "")
            {
                idR = Racun.NadjiRacun(int.Parse(txtKorisnik.Text), 2).IDRacun;
            }
        }