private void bt_yardimTalebi_Click(object sender, EventArgs e) { Hakkinda hk = new Hakkinda(); toolStripStatusLabel1.Text = "Kemal KOLCUOGLU © 2018 - Bütün Hakları Saklıdır."; hk.ShowDialog(); }
private void hakkındaToolStripMenuItem_Click(object sender, EventArgs e) { Hakkinda hk = new Hakkinda(); toolStripStatusLabel1.Text = "Kemal KOLCUOGLU © 2018 - Bütün Hakları Saklıdır."; hk.ShowDialog(); }
private string[] KayitAl() { string[] kayit = new string[2]; try { OleDbCommand com = new OleDbCommand("Select * From Giris", con); con.Open(); OleDbDataReader dr = com.ExecuteReader(); while (dr.Read()) { kayit[0] = dr[0].ToString(); kayit[1] = dr[1].ToString(); } con.Close(); return(kayit); } catch (Exception) { MessageBox.Show("Veritabanı Bağlantısı Sağlanamadığı için Program Başlatılamadı!\nLütfen Geliştirici ile iletişime Geçiniz"); Hakkinda hk = new Hakkinda(); hk.ShowDialog(); this.Close(); } return(null); }