Lines Matching refs:nCorrectRowCount
1309 long nCorrectRowCount = GetRowCount(); in StartDrag() local
1311 --nCorrectRowCount; // there is a empty row for inserting records in StartDrag()
1313 --nCorrectRowCount; in StartDrag()
1315 if ((nColPos == BROWSER_INVALIDID) || (nRow >= nCorrectRowCount)) in StartDrag()
1543 long nCorrectRowCount = GetRowCount(); in AcceptDrop() local
1545 --nCorrectRowCount; // there is a empty row for inserting records in AcceptDrop()
1547 --nCorrectRowCount; // the current data record doesn't really exist, we are appending a new one in AcceptDrop()
1549 if ((nCol == BROWSER_INVALIDID) || (nRow >= nCorrectRowCount) || GetColumnId(nCol) == 0 ) in AcceptDrop()
1651 long nCorrectRowCount = GetRowCount(); in ExecuteDrop() local
1653 --nCorrectRowCount; // there is a empty row for inserting records in ExecuteDrop()
1655 --nCorrectRowCount; // the current data record doesn't really exist, we are appending a new one in ExecuteDrop()
1657 …DBG_ASSERT((nCol != BROWSER_INVALIDID) && (nRow < nCorrectRowCount), "SbaGridControl::Drop : dropp… in ExecuteDrop()