Export to PowerPoint

dsk96m

New member
Local time
Today, 11:30
Joined
Mar 23, 2012
Messages
7
I have a form that the user enters some info into. The textbox i have set as rich text. The table has the value set as rich text. When I export it to an excel presentation, it has all the formatting code. <ul> <li>, <div>, etc.

Can anyone help me with export rich text or copying rich text to a powerpoint presentation.

With oPP.Slides(2).Shapes("Rectangle 8").TextFrame.TextRange
'.PasteSpecial (PpPasteDataType.ppPasteRTF)
'.Paste
.Text = fes_delv
.Lines(2, 50).Font.Size = 14
.Lines(2, 50).Font.Bold = False
End With

but it isnt pasting right, end up looking like
Code:
[LEFT]<ul>[/LEFT]
  [LEFT] <li>Field Support</li>[/LEFT]
  [LEFT] <li>Help Desk</li>[/LEFT]
  [LEFT]</ul>[/LEFT]
 

Users who are viewing this thread

Back
Top Bottom