private void textBoxTutar_Leave(object sender, EventArgs e) { if (!string.IsNullOrEmpty(textBoxTutar.Text)) { textBoxTutar.Text = _baglanti.ParaFormat(textBoxTutar.Text); } }
private void MusteriOku(string mstID) { _baglanti.ac(); DataTable dt = new DataTable(); DataTable dtYetkili = new DataTable(); //new SqlDataAdapter(string.Format(("Select * from dbo.musteri Where mstID = {0}"), mstID), _baglanti.cnn).Fill(dt); //new SqlDataAdapter(string.Format(("Select * from dbo.musteriYetkili Where mstYetkiliID = {0}"), mstID), _baglanti.cnn).Fill(dtYetkili); new OleDbDataAdapter(string.Format(("Select * from musteri Where mstID = {0}"), mstID), _baglanti.oleConn).Fill(dt); new OleDbDataAdapter(string.Format(("Select * from musteriYetkili Where mstYetkiliID = {0}"), mstID), _baglanti.oleConn).Fill(dtYetkili); labelID.Text = dt.Rows[0]["mstID"].ToString(); textBoxKod.Text = dt.Rows[0]["mstKod"].ToString(); textBoxAd.Text = dt.Rows[0]["mstAd"].ToString(); comboBoxMusteriTip.SelectedIndex = Convert.ToByte(dt.Rows[0]["mstTip"]); textBoxVN.Text = dt.Rows[0]["mstVN"].ToString(); textBoxVD.Text = dt.Rows[0]["mstVD"].ToString(); textBoxAdres.Text = dt.Rows[0]["mstAdres"].ToString(); textBoxNot.Text = dt.Rows[0]["mstNot"].ToString(); mTextBoxTel1.Text = dt.Rows[0]["mstTel1"].ToString(); mTextBoxTel2.Text = dt.Rows[0]["mstTel2"].ToString(); mTextBoxGsm.Text = dt.Rows[0]["mstGsm"].ToString(); mTextBoxTelFaks.Text = dt.Rows[0]["mstFaks"].ToString(); textBoxEPosta.Text = dt.Rows[0]["mstEposta"].ToString(); comboBoxIl.SelectedValue = dt.Rows[0]["mstIl"].ToString(); textBoxIlce.Text = dt.Rows[0]["mstIlce"].ToString(); dtpGenelKurul.Value = Convert.ToDateTime(dt.Rows[0]["mstGenelKurulTarih"].ToString()); dtpKurulus.Value = Convert.ToDateTime(dt.Rows[0]["mstKurulusTarih"].ToString()); textBoxTCNo.Text = dt.Rows[0]["mstTcNo"].ToString(); textBoxKullanici.Text = dt.Rows[0]["mstKullaniciKodu"].ToString(); textBoxSifre.Text = dt.Rows[0]["mstSifre"].ToString(); if (dtYetkili.Rows.Count > 0) { dgwYetkili.Rows.Add(dtYetkili.Rows.Count); int i = new int(); foreach (DataRow dr in dtYetkili.Rows) { dgwYetkili.Rows[i].Cells["yetkiliAdi"].Value = dr["yetkiliAd"].ToString(); dgwYetkili.Rows[i].Cells["yetkiliGSM"].Value = dr["yetkiliGsm"].ToString(); dgwYetkili.Rows[i].Cells["yetkiliTel"].Value = dr["yetkiliTel"].ToString(); dgwYetkili.Rows[i].Cells["yetkiliDahili"].Value = dr["yetkiliDahili"].ToString(); dgwYetkili.Rows[i].Cells["yetkiliUnvan"].Value = dr["yetkiliUnvan"].ToString(); dgwYetkili.Rows[i].Cells["yetkiliEposta"].Value = dr["yetkiliEposta"].ToString(); dgwYetkili.Rows[i].Cells["yetkiliId"].Value = dr["yetkiliID"].ToString(); i++; } } DataTable dtCari = new DataTable(); //new SqlDataAdapter(string.Format(("Select * from dbo.cariBakiye_vw Where cariMusteri={0}"), mstID), _baglanti.cnn).Fill(dtCari); new OleDbDataAdapter(string.Format(("SELECT SUM(cariTutar) AS bakiye FROM cariIslemler WHERE cariMusteri={0} GROUP BY cariMusteri"), mstID), _baglanti.oleConn).Fill(dtCari); if (dtCari.Rows.Count > 0) { textBoxBakiye.Text = _baglanti.ParaFormat(dtCari.Rows[0]["bakiye"].ToString()); } else { textBoxBakiye.Text = "0"; } _baglanti.kapat(); }