AvidLearner Posted January 30, 2008 Posted January 30, 2008 (edited) Hi .. I m tryin' 2 use "ClipPut" command n Paste it in a New word document... Creatin' a New Word Document aswell.. Plz h3lp me out... thnx Edited January 31, 2008 by AvidLearner
Moderators big_daddy Posted January 31, 2008 Moderators Posted January 31, 2008 See the help file for the _Word* functions.
AvidLearner Posted January 31, 2008 Author Posted January 31, 2008 See the help file for the _Word* functions.Thnx big_daddy
AvidLearner Posted January 31, 2008 Author Posted January 31, 2008 (edited) See the help file for the _Word* functions.Also I needed h3lp regardn "FileWrite" to a word doc....I mean,, Insertin da data stored in clipboard into a word doc...Is tat possible..??Thnx Edited January 31, 2008 by AvidLearner
BrettF Posted January 31, 2008 Posted January 31, 2008 Is it posssibl3..??; ******************************************************* ; Example 1 - Open an existing word document, append some text, ; save and quit. ; ******************************************************* ; #include <Word.au3> $oWordApp = _WordCreate (@ScriptDir & "\Test.doc") $oDoc = _WordDocGetCollection ($oWordApp, 0) $oDoc.Range.insertAfter ("This is some text to insert.") _WordDocSave ($oDoc) _WordQuit ($oWordApp) ClipGet will also help I'll let you work out how. Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
AvidLearner Posted January 31, 2008 Author Posted January 31, 2008 ; ******************************************************* ; Example 1 - Open an existing word document, append some text, ; save and quit. ; ******************************************************* ; #include <Word.au3> $oWordApp = _WordCreate (@ScriptDir & "\Test.doc") $oDoc = _WordDocGetCollection ($oWordApp, 0) $oDoc.Range.insertAfter ("This is some text to insert.") _WordDocSave ($oDoc) _WordQuit ($oWordApp) ClipGet will also help I'll let you work out how. Thank you Bert...!!
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