private void btnInstalar_Click(object sender, EventArgs e) { frmInstalando f = new frmInstalando(); this.Visible = false; f.ShowDialog(); this.Close(); }
public frmInstalando() { InitializeComponent(); daoFile = new DAOFIle(); Instalador(); Thread t = new Thread(new ThreadStart(ThreadProgressBar)); t.Start(); instalado = this; }