Ejemplo n.º 1
0
        private void Event_CancelUpdateReInstall()
        {
            if (m_frmReInstall != null)
            {
                m_frmReInstall.Close();
                m_frmReInstall = null;
            }

            if (CancelUpdatedReInstallEvent != null)
            {
                CancelUpdatedReInstallEvent();
            }
        }
Ejemplo n.º 2
0
        public void ShowFormReInstall()
        {
            //Close update configuration panel
            if (m_frmUpdates != null)
            {
                m_frmUpdates.Close();
                m_frmUpdates = null;
            }

            if (ReferenceEquals(m_frmReInstall, null))
            {
                m_frmReInstall           = new frmUpdatesReInstall(m_comHostController);
                m_frmReInstall.MdiParent = m_frmMain;
                m_frmReInstall.cancelUpdatedReInstall += Event_CancelUpdateReInstall;
            }

            m_frmReInstall.Show();
        }