// This is the full blown select for a drag style extent
        void m_Map_SelectBoxFinal(object sender, AxMapWinGIS._DMapEvents_SelectBoxFinalEvent e)
        {
            // First get the projected coordinates
            double top    = 0;
            double left   = 0;
            double bottom = 0;
            double right  = 0;

            m_Map.PixelToProj(e.left, e.top, ref left, ref top);
            m_Map.PixelToProj(e.right, e.bottom, ref right, ref bottom);

            MapWinGIS.Extents ext = new MapWinGIS.Extents();
            ext.SetBounds(left, bottom, 0, right, top, 0);
            SelectExtents(ext);
        }