Пример #1
0
        private void button6_Click(object sender, EventArgs e)
        {
            Change_Novel_Price ns = new Change_Novel_Price(this, null, null);      //  these constructors let the created object know what opened them

            ns.Show();                                                             //  this is only done like this in case I want the new objects to display
            this.Hide();                                                           //  slightly differently depending on who's accessing them.
        }
 private void button6_Click(object sender, EventArgs e)
 {
     Change_Novel_Price ns = new Change_Novel_Price(this, null, null);      //  these constructors let the created object know what opened them
     ns.Show();                                                             //  this is only done like this in case I want the new objects to display
     this.Hide();                                                           //  slightly differently depending on who's accessing them.
 }