private void DATA_CZYTELNICY_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            Edytor_czytelnika EDYTOR = new Edytor_czytelnika();

            EDYTOR.INPUT_IMIE.Text     = this.DATA_CZYTELNICY.CurrentRow.Cells[1].Value.ToString();
            EDYTOR.INPUT_NAZWISKO.Text = this.DATA_CZYTELNICY.CurrentRow.Cells[0].Value.ToString();
            EDYTOR.INPUT_TELEFON.Text  = this.DATA_CZYTELNICY.CurrentRow.Cells[3].Value.ToString();
            string KARTA_BIBLIOTECZNA = this.DATA_CZYTELNICY.CurrentRow.Cells[2].Value.ToString();

            EDYTOR.INPUT_MAIL.Text   = this.DATA_CZYTELNICY.CurrentRow.Cells[4].Value.ToString();
            EDYTOR.INPUT_MIASTO.Text = this.DATA_CZYTELNICY.CurrentRow.Cells[8].Value.ToString();
            EDYTOR.INPUT_ULICA.Text  = this.DATA_CZYTELNICY.CurrentRow.Cells[5].Value.ToString();
            EDYTOR.INPUT_DOM.Text    = this.DATA_CZYTELNICY.CurrentRow.Cells[6].Value.ToString();
            EDYTOR.INPUT_KOD.Text    = this.DATA_CZYTELNICY.CurrentRow.Cells[7].Value.ToString();

            EDYTOR.ShowDialog();
        }
        private void BUT_EDYTUJ_Click(object sender, EventArgs e)
        {
            string KARTA_BIBLIOTECZNA = this.DATA_CZYTELNICY.CurrentRow.Cells[2].Value.ToString();
            string ADRES_ID           = this.DATA_CZYTELNICY.CurrentRow.Cells[9].Value.ToString();

            Edytor_czytelnika EDYTOR = new Edytor_czytelnika(KARTA_BIBLIOTECZNA, ADRES_ID);

            EDYTOR.INPUT_IMIE.Text     = this.DATA_CZYTELNICY.CurrentRow.Cells[1].Value.ToString();
            EDYTOR.INPUT_NAZWISKO.Text = this.DATA_CZYTELNICY.CurrentRow.Cells[0].Value.ToString();
            EDYTOR.INPUT_TELEFON.Text  = this.DATA_CZYTELNICY.CurrentRow.Cells[3].Value.ToString();
            EDYTOR.INPUT_MAIL.Text     = this.DATA_CZYTELNICY.CurrentRow.Cells[4].Value.ToString();
            EDYTOR.INPUT_MIASTO.Text   = this.DATA_CZYTELNICY.CurrentRow.Cells[8].Value.ToString();
            EDYTOR.INPUT_ULICA.Text    = this.DATA_CZYTELNICY.CurrentRow.Cells[5].Value.ToString();
            EDYTOR.INPUT_DOM.Text      = this.DATA_CZYTELNICY.CurrentRow.Cells[6].Value.ToString();
            EDYTOR.INPUT_KOD.Text      = this.DATA_CZYTELNICY.CurrentRow.Cells[7].Value.ToString();

            EDYTOR.ShowDialog();
            Wyszukaj_czytelnika_Load(sender, e);
        }