private void deleteregion_Click(object sender, EventArgs e)
        {
            RegionInfo region = _regionManager.GetRegionInfo(CurrentRegionID);

            if (region != null) //It never should be, but who knows
            {
                DialogResult r = Utilities.InputBox("Are you sure?", "Are you sure you want to delete this region?");
                if (r == DialogResult.OK)
                {
                    SetStoppingStatus();
                    _regionManager.DeleteRegion(region.RegionID);
                    SetOfflineStatus();
                    //Remove everything from the GUI
                    ChangeRegionInfo(null);
                    //Update the regions in the list box as well
                    RefreshCurrentRegions();
                }
            }
        }