Notice
- Today
- Total
Recent Posts
Recent Comments
Link
Tags
- RaspberryPi
- UltraToolbarsManager
- 라즈베리 피이
- mariaDB 외부접속
- mariaDB 설치
- Ribbon
- ScrollBarTrackPolicy
- .mine
- WebViewClient
- OpenFileDialog
- ContextMenuStrip
- node.js
- ImageList Icon 변환
- 자동 닫힘
- ubuntu
- 라즈베리파이
- node.js 설치
- Image icon 변환
- Spread
- 다중 Filter
- <<<<<<<<
- OSHP
- onPageFinished
- usb 인식 불가
- 동영상 오류
- mp4 재생
- c#
- MariaDB
- Raspberry Pi
- startActivity
Archives
Realman's World
[FpSpread] 스프레드 재조회시 현재 top row 유지 시키기 본문
스프레드를 이용하여 정보를 Display해 줄 때 재조회를 하면 다시 row가 1부터 시작하게 된다.
이를 해결하기 위해 조회전에 Top Row 를 저장해 주고 조회 후에 다시 Top Row를 저장하면 된다.
실행 방법은 아래와 같다.
이를 해결하기 위해 조회전에 Top Row 를 저장해 주고 조회 후에 다시 Top Row를 저장하면 된다.
실행 방법은 아래와 같다.
int iTopRow = spread.GetViewportTopRow(0);
InquiryDB();
spread.SetViewportTopRow(0, iTopRow);
InquiryDB();
spread.SetViewportTopRow(0, iTopRow);
Comments