private void kullanıcıKişiselBilgiToolStripMenuItem_Click(object sender, EventArgs e) { foreach (Form frm in this.MdiChildren) { frm.Close(); } kullanıcılar = new Kullanıcılar(); kullanıcılar.MdiParent = this; kullanıcılar.listView1.Columns[3].Width = 0; kullanıcılar.listView1.Columns[4].Width = 0; kullanıcılar.listView1.Columns[5].Width = 0; kullanıcılar.listView1.Columns[6].Width = 0; kullanıcılar.listView1.Columns[12].Width = 0; kullanıcılar.listView1.Columns[13].Width = 0; kullanıcılar.listView1.Columns[14].Width = 0; kullanıcılar.listView1.Columns[15].Width = 0; kullanıcılar.listView1.Columns[16].Width = 0; kullanıcılar.listView1.Columns[17].Width = 0; kullanıcılar.listView1.Columns[18].Width = 0; kullanıcılar.listView1.Columns[19].Width = 0; kullanıcılar.listView1.ColumnWidthChanging += listView1_ColumnWidthChanging; kullanıcılar.listView1.Scrollable = false; kullanıcılar.Text = "< Kullanıcı Kişisel Bilgi >"; kullanıcılar.Show(); }
private void kullanıcıHakkındaToolStripMenuItem_Click(object sender, EventArgs e) { foreach (Form frm in this.MdiChildren) { frm.Close(); } kullanıcılar = new Kullanıcılar(); kullanıcılar.MdiParent = this; kullanıcılar.listView1.Columns[0].Width = 0; kullanıcılar.listView1.Columns[3].Width = 0; kullanıcılar.listView1.Columns[4].Width = 0; // For Döngüsü çalışmadığından böyle yaptım // kullanıcılar.listView1.Columns[5].Width = 0; kullanıcılar.listView1.Columns[6].Width = 0; kullanıcılar.listView1.Columns[7].Width = 0; kullanıcılar.listView1.Columns[8].Width = 0; kullanıcılar.listView1.Columns[9].Width = 0; kullanıcılar.listView1.Columns[10].Width = 0; kullanıcılar.listView1.Columns[11].Width = 0; kullanıcılar.listView1.Columns[15].Width = 0; kullanıcılar.listView1.Columns[19].Width = 0; kullanıcılar.listView1.ColumnWidthChanging += listView1_ColumnWidthChanging; kullanıcılar.listView1.Scrollable = false; kullanıcılar.Text = "< Kullanıcı Hakkında >"; kullanıcılar.Show(); }
// SİLME BUTTONU private void button3_Click(object sender, EventArgs e) { try { baglanti.Open(); komut.Connection = baglanti; komut.CommandText = "Delete From kullanicilar where tc='" + textBox1.Text + "'"; komut.ExecuteNonQuery(); baglanti.Close(); MessageBox.Show("Kullanıcı Başarı ile Silindi !", "Kullanıcı Silme", MessageBoxButtons.OK, MessageBoxIcon.Information); textclear(this); // Kullanıcılar kapat = new Kullanıcılar(); // kapat.Close(); Kullanıcılar ac = new Kullanıcılar(); ac.Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void kullanıcıBilgileriToolStripMenuItem_Click(object sender, EventArgs e) { // BURADA KULLANICILAR FORMUNU GRUPLUYORSUN !! EKSİK TAMAMLAAAA . . . . foreach (Form frm in this.MdiChildren) { frm.Close(); } kullanıcılar = new Kullanıcılar(); kullanıcılar.MdiParent = this; //kullanıcılar.listView1.Columns[0].Width = 0; // BU KOD GENİŞLİĞİ AYARLIYOR //kullanıcılar.listView1.Columns[14].Dispose(); // BU KOD İSE VERDĞİN İNDEX NUMARASINDAKİ KOLONU LİSTVİEWDEN ATIYOR. kullanıcılar.listView1.ColumnWidthChanging += listView1_ColumnWidthChanging; //Bu kod sayesinde aşağıdaki kullanıcılar formundaki listview1'in kolon olay metodu belirdi ! kullanıcılar.listView1.Scrollable = false; // listview kaydırma kodu ! kullanıcılar.Text = "< Kullanıcı Bilgileri >"; kullanıcılar.Show(); }