Exemplo n.º 1
0
 /// <summary>
 /// Shows details about the selected alert
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void AllAlertsDetailsButton_Click(object sender, EventArgs e)
 {
     try
     {
         ServerTab.AlertDetailForm adf = new Microsoft.AnalysisServices.Samples.ActivityViewer.ServerTab.AlertDetailForm((Alert)AllAlertsGrid.CurrentRow.Cells[3].Value);
         adf.ShowDialog();
     }
     catch { }
 }
 private void DetailsButton_Click(object sender, EventArgs e)
 {
     try
     {
         ServerTab.AlertDetailForm adf = new Microsoft.AnalysisServices.Samples.ActivityViewer.ServerTab.AlertDetailForm((Alert)AlertGrid.CurrentRow.Cells[2].Value);
         adf.ShowDialog();
     }
     catch { }
 }