public frmInicio() { InitializeComponent(); instanciaInicio = this; bckExportarTimer = new BackgroundWorker(); bckExportarTimer.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bckExportarTimer_DoWork); bckExportarTimer.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bckExportarTimer_RunWorkerCompleted); aTimer = new System.Timers.Timer(600000); aTimer.Elapsed += new ElapsedEventHandler(ExportarAlTimer); aTimer.Enabled = true; }
public frmPrincipal(frmInicio instanciaInicio) { InitializeComponent(); foreach (Control control in this.Controls) { MdiClient client = control as MdiClient; if (!(client == null)) { client.BackColor = this.BackColor; break; } } this.instanciaInicio = instanciaInicio; }
private void bckWrk_DoWork(object sender, DoWorkEventArgs e) { frmInicio frm = new frmInicio(); // frm.ActualizarBD(); }
public frmInicio() { InitializeComponent(); instanciaInicio = this; }