View Single Post
 
Old 05-16-2014, 04:41 AM
egyp7 egyp7 is offline Windows 7 64bit Office 2007
Novice
 
Join Date: May 2014
Posts: 2
egyp7 is on a distinguished road
Default

thank for answer macropod, i already find way clean document data and paste my content. my solution look like :
Code:
Sub doc_clean_paste()

Word.ActiveDocument.Range.Select
    Selection.WholeStory
    Selection.Delete Unit:=wdCharacter, Count:=1
    
   Dim doc As Word.Document
   Set doc = ThisDocument 
   
   doc.Range.InsertParagraphAfter
   doc.Range.InsertAfter "Text Added at " & Time
End Sub
Reply With Quote