Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

private void buttonDepoEkle _ Click ( object sender , EventArgs e ) { try { if ( string . IsNullOrWhiteSpace ( textBoxDepoAdi . Text )

private void buttonDepoEkle_Click(object sender, EventArgs e){ try { if (string.IsNullOrWhiteSpace(textBoxDepoAdi.Text)|| textBoxDepoAdi.Text.Length <2){ MessageBox.Show("Ltfen en az iki karakter ieren depo adn girin.", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } if (string.IsNullOrWhiteSpace(textBoxAdres.Text)){ MessageBox.Show("Ltfen adresi girin.", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } string depoAdi = textBoxDepoAdi.Text; string adres = textBoxAdres.Text; string sorgu = $"INSERT INTO tbl_Depolar (DepoAd, Adres) VALUES ('{depoAdi}','{adres}')"; vt.Insert(sorgu); DepolariListele(); Kontroller.TbTemizle(this); MessageBox.Show("Depo baaryla eklendi.", "Bilgi", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex){ MessageBox.Show("Bir hata olutu: "+ ex.Message, "Hata", MessageBoxButtons.OK, MessageBoxIcon.Error); }} kodu aklar msn

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions