private void buttonNextStep_Click(object sender, EventArgs e)
        {
            NewCountryHistory nch = new NewCountryHistory(countryTagName, countryName, mf);

            nch.Show();
            //nch.MdiParent = this.MdiParent;
            this.Close();
        }
Example #2
0
        private void buttonPreviousStep_Click(object sender, EventArgs e)
        {
            foreach (XmlNode node in countryHistory.ChildNodes[1].SelectNodes("culture"))
            {
                countryHistory.ChildNodes[1].RemoveChild(node);
            }
            countryHistory.Save(".\\xml\\history\\countries\\" + countryTagName + " - " + countryName + ".txt.xml");
            NewCountryHistory nch = new NewCountryHistory(countryTagName, countryName, mf);

            nch.Show();
            this.Close();
        }