private void Form1_Load(object sender, EventArgs e) { //formposition.RestoreWindowPosition(this); formposition.ReadPosition(this, "Form1"); Rechte_Load(); var new_cl = db.Select("SELECT * FROM changelog ORDER BY id DESC LIMIT 1", "changelog"); if (int.Parse(new_cl[0][0]) != cl) { Changelog changelog = new Changelog(); changelog.Show(); } }
private void changelogToolStripMenuItem_Click(object sender, EventArgs e) { Changelog changelog = new Changelog(); changelog.ShowDialog(); }