webapp는 이미 office2007에서 완료되었으므로 Office2010에서 작동하도록 변환해야합니다. 코드의 헤더 생성기 부분을 변환 할 수 있었지만 문서 본문에 문제가 있습니다. 코드는 "데이터"문서의 데이터를 복사하여 생성 된 문서에 붙여 넣습니다.워드 2010을 자동화하여 문서를 생성합니다
appword.activewindow.activepane.view.seekview = 0
'set appsel1 = appword.activewindow.selection
set appsel1 = appword.window(filepath).selection -that is the original one
appdoc1.bookmarks("b1").select
appword.selection.insertafter("some text")
appsel1.endkey(6) -the code stops here
appword.selection.insertafter("some other text")
iexplorer 디버거는 오류 : appsel1 개체가 필요하다고 말합니다. 그리고 iexplorer 디버거를 사용하여 데이터를 볼 때 "{...}"대신 "empty"가됩니다.
코드의 내용이 더 필요하면 누구나 내가 뭘 잘못하고 있는지 말해 줄 수 있습니다.
word office 2007에서 작업 한 파일의 모든 텍스트를 선택해야합니다. – Barakonda