void listeEkleme() { int listToplam = listBtopDavet.Items.Count; try { if (a == 0) { DataTable dtList = new DataTable(); dtList = db.topDavetListOkumaID(); sonIDList = db.sonIDstList; } sonIDListInt = Convert.ToInt32(sonIDList); sonIDListInt += 1; sonIDList = sonIDListInt.ToString(); for (int i = 0; i < listToplam; i++) { DataTable dt = db.topUyeOkuma(listeTopDvtID.Items[i].ToString()); string uID = dt.Rows[0]["ID"].ToString(); string uAd = dt.Rows[0]["Isim"].ToString() + " " + dt.Rows[0]["Soyisim"].ToString(); db.topDavetListeKayit(sonIDList, uAd, uID, txtListAd.Text); } MessageBox.Show("Liste Başarı İle Kayıt Edildi!"); } catch (Exception hata) { if (hata.Message == "0 konumunda satır yok.") { sonIDList = "0"; a = 1; listeEkleme(); } else { MessageBox.Show(hata.Message); } } }