private void TAUpdateControlForm_Load(object sender, EventArgs e)
		{
			//Get the ITAUpdateControl interface from the TA Display Manager
			//Store it as a member variable for future use
			//The DisplayManager is a singleton so the reference should never change
			ITrackingEnvironment3 taEnv = new TrackingEnvironmentClass();
			m_taUpdateCtrl = (ITAUpdateControl)taEnv.DisplayManager;
		}
        private void TAUpdateControlForm_Load(object sender, EventArgs e)
        {
            //Get the ITAUpdateControl interface from the TA Display Manager
            //Store it as a member variable for future use
            //The DisplayManager is a singleton so the reference should never change
            ITrackingEnvironment3 taEnv = new TrackingEnvironmentClass();

            m_taUpdateCtrl = (ITAUpdateControl)taEnv.DisplayManager;
        }