private void BackUp() { RunTaskAsync backup = new RunTaskAsync(BackupHelper.BackupDatabase); IAsyncResult result = backup.BeginInvoke(connString, filePath, chkDifferential.Checked, CallBack, backup); PrepareForm(); }
private void Restore() { if (!File.Exists(filePath)) { MessageBox.Show("No file name specified, Please select a valid path", "Restore", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } RunTaskAsync restore = new RunTaskAsync(RestoreHelper.RestoreDatabase); IAsyncResult result = restore.BeginInvoke(connString, filePath, CallBack, restore); PrepareForm(); }