View Single Post
 
Old 10-25-2012, 03:44 AM
ramsgarla ramsgarla is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Sep 2012
Posts: 21
ramsgarla is on a distinguished road
Default

I tried this code and i am able to see bulleted lists after pasting the content onto word.

PwrdPasteDoc.Sections.Last.Range.PasteSpecial(, , , , DataType:=Word.WdPasteDataType.wdPasteRTF)

With PwrdPasteDoc.Styles("Normal").Font
.Name = "Arial"
.Size = 10
End With

But, I can find extra spacing between the lines after pasting the data.

How do you avoid extra spacing between the lines ?

Any code snippet would be great.
Reply With Quote