2012-04-20 4 views

답변

1

뭔가가 :

Private Sub UserForm_Activate() 

    Dim oSl As Slide 
    Dim sTemp As String 

    For Each oSl In ActivePresentation.Slides 
     If oSl.Shapes.HasTitle Then 
      Me.ListBox1.AddItem oSl.Shapes.Title.TextFrame.TextRange.Text 
     Else 
      Me.ListBox1.AddItem CStr(oSl.SlideIndex) 
     End If 
    Next 

End Sub 
+0

+ 1 잘 –

+0

감사를 수행. 제목 자리 표시 자의 텍스트를 가져와야하지만 제목처럼 보이는 텍스트는 가져 오지 않을 것이라고 언급 했어야합니다. –

관련 문제