어느 가을날의 전환점
MiPlatform|엑셀(Excel) 2007 파일 생성하기(Export, xlsx) 본문
var ExportObject1;
var fileName = "파일경로/파일명.xlsx";
ExportObject1 = CreateExportObject();
ExportObject1.ExportType = "Excel";
ExportObject1.ExportFileName = fileName;
ExportObject1.ActiveSheetName = "sheet1";
ExportObject1.MakeEmptyFileWhenNotExist = true;
ExportObject1.AddExportGrid("sheet1" + "!" + "A1", divGridPanel.object(sGrid), true, false);
ExportObject1.Export();
ExportObject1.Save();
ExportObject1.Close();
ExportObject1 = null;
'Software > MiPlatform' 카테고리의 다른 글
MiPlatform|마이플랫폼에서 아웃룩 메일 작성 창 띄우기 - ExecShell (0) | 2011.12.26 |
---|---|
MiPlatform|그리드의 MultiSelect 속성이 활성화 된 경우 Row 포커스 하이라이트가 제대로 이동하지 않는 현상 (0) | 2011.06.01 |
MiPlatform|그리드 2개 스크롤바 같이 움직이게 하는 방법 (0) | 2010.12.10 |
MiPlatform|선택 된 데이터셋 삭제하기 (0) | 2010.10.06 |
MiPlatform|PID의 Grid Contents Edit에서 Source 창만 보이는 문제 해결 방법 (0) | 2010.08.24 |
Comments