View Single Post
 
Old 06-30-2012, 03:34 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

For a macro to clean up the text before processing, see: https://www.msofficeforums.com/word/...d-returns.html

VBA doesn't have the equivalent of 'Try', but you could add:
On Error Resume Next
after:
With ActiveDocument

Regarding the line objects, I suspect they're 'shapes', like autoshape lines, but without seeing the document I can't be sure. If they are, a macro could easily enough delete them, but I'd need to know whether there are other shapes that need to be preserved.

As for your PowerPoint macro, you generally cannot simply copy & paste a macro from Word to PowerPoint, especially one produced by the macro recorder. The vba object models for the two applications are quite different. For example, without even considering whether PowerPoint's vba object model has the procedures you're trying to use, all the statements beginning with 'wd', like 'wdColorRed' are Word-specific.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote