Ejemplo n.º 1
0
        private void btnInstalar_Click(object sender, EventArgs e)
        {
            frmInstalando f = new frmInstalando();

            this.Visible = false;
            f.ShowDialog();
            this.Close();
        }
Ejemplo n.º 2
0
        public frmInstalando()
        {
            InitializeComponent();
            daoFile = new DAOFIle();
            Instalador();
            Thread t = new Thread(new ThreadStart(ThreadProgressBar));

            t.Start();
            instalado = this;
        }