View Single Post
  #9   Report Post  
Posted to microsoft.public.excel.programming
voodooJoe voodooJoe is offline
external usenet poster
 
Posts: 43
Default converting ppt to pdf launched from xls

again the 'p' in presentations does not capitalize

in VBA, type in all your code in lowercase. if the syntax is correct, the
key words will capitalize themselves automatically

look at you code - the 'p' is lowercase. this is a BIG clue that something
is wrong.

perhaps:

- the way you are using presentations is incorrect
- you are prferring to the presentations COLLECTION when you shoud be
referring to 1 presentation specifically
- linksources is a valid property - but not for presentation(s) object

- vdJ

"pm" wrote in message ...
voodooJoe wrote:

sorry, but you're on your own now -- voodooJoe


:(
ok. but what about updating links in presentation?

i tried sth like this but does not work...

aLinks = .presentations.LinkSources(xlOLELinks)
If Not IsEmpty(aLinks) Then
For i = 1 To UBound(aLinks)
' MsgBox "Link " & i & ":" & Chr(13) & aLinks(i)
Next i
End If