walle Posted April 29, 2008 Posted April 29, 2008 (edited) Got a sneaky little problem with _WordQuit. It closes Word windows, even if they aren't attached. Any idea why? #include <Word.au3> AutoItSetOption("WinTitleMatchMode", 4) Local $oDoc $handle = WinGetHandle("classname=OpusApp", "") $oWordApp = _WordAttach ($handle, "HWND") If Not @error Then $oDoc = _WordDocGetCollection ($oWordApp, 0) EndIf _WordDocSave($oDoc) If @error = 1 Then ; Check if savepath is selected. _WordDocSaveAs ($oDoc, @ScriptDir & "\Test.doc") EndIf _WordQuit ($oWordApp) Edited April 29, 2008 by walle
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now