Ejemplo n.º 1
0
        public void OnHistoricalButtonPressed(IRibbonControl control)
        {
            helperClass.log.Info("On Historical button is pressed");
            var hFrm = new historicalFrm();

            hFrm.ShowDialog();
        }
Ejemplo n.º 2
0
 public void OnHistoricalButtonPressed(IRibbonControl control)
 {
     try
     {
         var hFrm = new historicalFrm();
         hFrm.ShowDialog();
     }
     catch (Exception ex)
     {
         helperClass.log.Error(ex);
     }
 }