일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 회계
- Book
- Tomcat
- MIP
- miplatform
- 자바
- 톰캣
- 에러
- 태그를 입력해 주세요.
- DB
- 도서
- 마이플랫폼
- java
- 성능
- Report Designer
- 데이터베이스
- oracle
- 함수
- Eclipse
- JavaScript
- 엑셀
- 튜닝
- error
- 한글
- 오류
- 이클립스
- Excel
- JEUS
- 기타소득
- 오라클
Archives
- Today
- Total
어느 가을날의 전환점
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