ironmanexe Posted July 5, 2006 Posted July 5, 2006 Because they have diffrent markup. Time + Effort = Constant
PsaltyDS Posted July 5, 2006 Posted July 5, 2006 How can we read from an Excel file or a Word file?With THIS. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
ironmanexe Posted July 5, 2006 Posted July 5, 2006 u mean include them... Because they have diffrent markup Time + Effort = Constant
MHz Posted July 5, 2006 Posted July 5, 2006 nice joke!!! Not sure if was a joke as OpenOffice has objects that could help to handle Microsoft Office documents. These documents are binary so you may need to convert them, or use OpenOffice or Microsoft Office to read them. A example that uses MS Word with AutoIt Beta. Not tested as I do not have Word installed. $sFile = 'yourfile.doc' $oWord = ObjCreate('Word.Application') $oWord.Documents.Open $sFile $oWord.Activedocument.SaveAs $sFile & '.txt', 6 $oWord.Activedocument.Close $oWord = ''
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