Notice
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 회계
- Excel
- Eclipse
- java
- Report Designer
- 기타소득
- 이클립스
- 자바
- oracle
- Tomcat
- 성능
- 데이터베이스
- 한글
- 마이플랫폼
- 함수
- MIP
- 오라클
- 튜닝
- 도서
- miplatform
- 태그를 입력해 주세요.
- 에러
- JavaScript
- 엑셀
- DB
- 톰캣
- 오류
- Book
- JEUS
- error
- Today
- 19
- Total
- 970,841
어느 가을날의 전환점
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|엑셀(Excel) 2007 파일 생성하기(Export, xlsx) (0) | 2011.01.26 |
MiPlatform|그리드 2개 스크롤바 같이 움직이게 하는 방법 (0) | 2010.12.10 |
MiPlatform|선택 된 데이터셋 삭제하기 (0) | 2010.10.06 |
MiPlatform|PID의 Grid Contents Edit에서 Source 창만 보이는 문제 해결 방법 (0) | 2010.08.24 |
- Tag
- 2007, Excel, export, ExportObject, MIP, miplatform, xlsx, 마이플랫폼, 엑셀
0 Comments