public GroupSelect()
        {
            GroupSelect groupSelect = this;

            base.Load    += new EventHandler(groupSelect.GroupSelect_Load);
            this.iTerrain = new ClsTerrainTable();
            this.InitializeComponent();
        }
 private void Menu_CloneGroupB_Click(object sender, EventArgs e)
 {
     GroupSelect groupSelect = new GroupSelect();
       groupSelect.SelectGroupName.Text = "Clone Group B";
       groupSelect.Tag = (object) this;
       groupSelect.Show();
 }
 private void MenuTerrainC_Click(object sender, EventArgs e)
 {
     GroupSelect groupSelect = new GroupSelect();
       groupSelect.SelectGroupName.Text = "Select Group C";
       groupSelect.Tag = (object) this;
       groupSelect.Show();
 }