コード例 #1
0
 private void fpSpread1_EnterCell(object sender, FarPoint.Win.Spread.EnterCellEventArgs e)
 {
     if (this.applictionSelected != null)
     {
         this.applictionSelected(this, this.fpSpread1_Sheet1.Rows[e.Row].Tag as OperationAppllication);
     }
 }
コード例 #2
0
 private void fpView_EnterCell(object sender, FarPoint.Win.Spread.EnterCellEventArgs e)
 {
     if (ctxMenu.Items.Count > 1)
     {
         ctxMenu.Items[1].Enabled = Convert.ToBoolean(shtView.Cells[e.Row, (int)eColumn.IS_ACTIVE].Value);
     }
 }
コード例 #3
0
ファイル: RAS020107.cs プロジェクト: trantan490/web
        private void spdData_EnterCell(object sender, FarPoint.Win.Spread.EnterCellEventArgs e)
        {
            /****************************************************
            * comment : spread sheet의 cell이 변경되면
            *
            * created by : bee-jae jung(2016-09-22-목요일)
            *
            * modified by : bee-jae jung(2016-09-20-목요일)
            ****************************************************/
            try
            {
                System.Windows.Forms.Cursor.Current = Cursors.WaitCursor;

                ShowChart(e.Row);
            }
            catch (Exception ex)
            {
                CmnFunction.ShowMsgBox(ex.Message);
            }
            finally
            {
                System.Windows.Forms.Cursor.Current = Cursors.Default;
            }
        }
コード例 #4
0
 private void _spread_EnterCell(object sender, FarPoint.Win.Spread.EnterCellEventArgs e)
 {
 }
コード例 #5
0
 private void fpSelector_EnterCell(object sender, FarPoint.Win.Spread.EnterCellEventArgs e)
 {
     ((FarPoint.Win.Spread.FpSpread)sender).ActiveSheet.Rows[e.Row].BackColor = QuickReportCore.Controls.ucConditionObject.ObjectActivateColor;
 }