On Wed, 23 Jan 2008 21:56:11 +0100 john d. herron wrote: > I have several hundred winword (.doc) files that need to be turned > into OOOrg Writer (.odt) files. > An attempt to do a conversion via File -> Wizards ->Document > Converter... yielded the following error message: > /"Inadmissible value or data type. > Index out of defined range."/ > in module Language, GetApplResourceArray(StartResIndex as I, Count as > I, BigArray()). > > Am I doing something wrong ? or is the module fixable? or is there > perhaps something like a "doc2odt" converter outside of > OpenOfficeWriter? >
Do you have all the files in one big folder. The error looks like an overflow. try *** mkdir tmp mv a*.doc tmp *** Come to think of it there is probably a patern to match files starting a-m so you could "mv [a-m]*.doc tmp" or equivalent. Of course you could also highlight and move them in konqueror. The intention is to reduce the size of the folder. I think the term is "glob limit" for a bash limit of this nature. -- Michael All shall be well, and all shall be well, and all manner of things shall be well - Julian of Norwich 1342 - 1416 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
