예제 #1
0
파일: Class1.cs 프로젝트: zaibatsi/open-api
        public void OnHistoricalButtonPressed(IRibbonControl control)
        {
            helperClass.log.Info("On Historical button is pressed");
            var hFrm = new historicalFrm();

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