목록MSXML (3)
soulfree
================================================ 안준철님 정말 감사합니다. ================================================ 출처 : 블로그 > Jon's 블로그 http://blog.naver.com/junechol/140022015860 xml에 있는 데이터를 액셀 파일로 저장하려고 한다. 화면에 액셀이 뜨지는 않고 조용히 xls 파일이 만들어져야 한다. 이를 위해서는 excel automation을 써야 한다. 또한 xml을 읽어들이는 작업은 msxml 컴포넌트를 쓴다. 비주얼 스투디오에서 끌어오기 하는 방식으로 automation을 하기도 한다. 숱한 참조문서에서 그렇게들 한다. 나도 그렇게 했었다. 왜 되는지는 모르고 ..
Summary This sample application shows how to use MSXML 4.0 to create an XML document using DOM. This application illustrates the following DOM APIs: createProcessingInstruction, insertBefore, createNode, appendChild, createElement, createAttribute, setNamedItem, createComment, createCDATASection, createDocumentFragment, setAttribute, and save. Our objective is to use MSXML 4.0 DOM and create the..
DOM or Document Object Model is a W3C specification that defines a standard programming API to build, navigate, update and transform XML documents. MSXML supports DOM Level 2. With DOM, the parser reads the input XML document and builds the hierarchical tree representation of this document in the memory. Once the complete document is loaded into the memory, the parser DOM methods allow to naviga..