728x90
반응형
델파이 퀀텀그리드 Excel출력하기
1. uses 절에 다음을 추가 한다
cxGridExportLink , shellApi
2. 엑셀버튼 클릭시
SaveDialog1.FileName := '상품코드.xls';
if SaveDialog1.Execute then
begin
ExportGridToExcel(SaveDialog1.FileName, Grid_Master, true, true, false, 'xls');
Application.ProcessMessages;
if MessageDlg(SaveDialog1.FileName + ' 파일을 실행하시겠습니까?',
mtWarning, [mbYes, mbNo], 0) = mrYes then
ShellExecute(self.Handle, PChar('OPEN'), PChar(SaveDialog1.FileName), nil, nil, SW_SHOWMAXIMIZED);
Application.ProcessMessages;
end;
728x90
반응형
'Delphi Tip > 그리드' 카테고리의 다른 글
Delphi 스트링그리드(StringGrid) 정렬 (0) | 2021.09.03 |
---|---|
델파이 Tcxgrid 선택한 값 가져오기 (0) | 2021.09.01 |
델파이 TcxDBTreeList 북마크 Bookmarks 사용하기 (0) | 2021.08.27 |
델파이 퀀텀트리리스트 TcxDbTreeList 멀티셀렉트 데이터 키값가져오기 (0) | 2021.08.26 |
delphi tadvcolumngrid fixedcolor (0) | 2021.08.25 |
댓글