private void viewsToolStripMenuItem_Click(object sender, EventArgs e) { if (service == null) { if (OnRequestConnection != null) { var args = new RequestConnectionEventArgs { ActionName = "WhoAmI", Control = this, Parameter = null }; OnRequestConnection(this, args); } } else { infoPanel = InformationPanel.GetInformationPanel(this, "Retrieving Views...", 340, 100); var worker = new BackgroundWorker(); worker.DoWork += WorkerLoadViews; worker.ProgressChanged += WorkerProgressChanged; worker.RunWorkerCompleted += WorkerLoadViewsCompleted; worker.WorkerReportsProgress = true; worker.RunWorkerAsync(); } }
private void toolStripButton1_Click(object sender, EventArgs e) { if (service == null) { if (OnRequestConnection != null) { var args = new RequestConnectionEventArgs { ActionName = "WhoAmI", Control = this, Parameter = null }; OnRequestConnection(this, args); } } else { infoPanel = InformationPanel.GetInformationPanel(this, "Counting Records in View...", 340, 100); var worker = new BackgroundWorker(); worker.DoWork += WorkerGetCounts; worker.ProgressChanged += WorkerProgressChanged; worker.RunWorkerCompleted += WorkerGetCountsCompleted; worker.WorkerReportsProgress = true; worker.RunWorkerAsync(); } }
private void btnExecuteWFs_Click_1(object sender, EventArgs e) { if (service == null) { if (OnRequestConnection != null) { var args = new RequestConnectionEventArgs { ActionName = "WhoAmI", Control = this, Parameter = null }; OnRequestConnection(this, args); } } else { infoPanel = InformationPanel.GetInformationPanel(this, "Executing Workflows...", 340, 100); var worker = new BackgroundWorker(); worker.DoWork += WorkerExecWFs; worker.ProgressChanged += WorkerProgressChanged; worker.RunWorkerCompleted += WorkerExecWFsCompleted; worker.WorkerReportsProgress = true; worker.RunWorkerAsync(); } }
private void BtnWhoAmIClick(object sender, EventArgs e) { if (service == null) { if (OnRequestConnection != null) { var args = new RequestConnectionEventArgs { ActionName = "WhoAmI", Control = this, Parameter = null }; OnRequestConnection(this, args); } } else { ProcessWhoAmI(); } }