Exemple #1
0
        private void AddBtn_Click(object sender, EventArgs e)
        {
            //This is child form I am going to spawn
            //It will open the Account Entry window
            AccountEntryView accountList = new AccountEntryView();

            accountList.StartPosition = FormStartPosition.Manual;
            accountList.Location      = new Point(this.Left + 100, this.Top + 100);
            accountList.ShowDialog();
            this.setButtons();
        }