gridview에서 row를 이동할 경우 해당 row가 맨위나 맨 아래로 갈 경우가 많은데 이럴 경우 아래 코드로 적용해주면 이동한 row가 화면 중앙에 위치하여 보기 편해짐 ----------------------------------------------------------------------------- if (nRow > OutlookGrid_main.DisplayedRowCount(false) / 2) OutlookGrid_main.FirstDisplayedScrollingRowIndex = nRow - OutlookGrid_main.DisplayedRowCount(false) / 2; OutlookGrid_main.Refresh(); -------------------------------..