private void textBox1_TextChanged(object sender, EventArgs e) { try { if (textBox1.Text != "") { OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0; Data Source=B13B14.accdb"); int br = 0; string uzmi = "Select Max(AutorID) From Autor"; OleDbCommand cmd1 = new OleDbCommand(uzmi, con); con.Open(); OleDbDataR...
private void radioButton1_CheckedChanged(object sender, EventArgs e) { button1.Enabled = true; button2.Enabled=false; textBox1.Enabled=true; textBox2.Enabled = true; textBox3.Enabled = true; textBox5.Enabled = true; comboBox1.Enabled = true; List<string> kategorije = new List<string>(); string drl = "Select Naziv From Kategorija ORDER BY Naziv"; OleDbCommand komanda = new OleDbCommand(drl, con); con.Open(); OleDbDataReader read...