Skip to content

Instantly share code, notes, and snippets.

View animegamer4422's full-sized avatar

Anime Gamer animegamer4422

View GitHub Profile
@animegamer4422
animegamer4422 / PPT VBA Script.md
Last active March 5, 2025 14:05
PPT VBA Script
    ' Add a new slide (Title and Subtitle layout)
    Dim slide As Object
    Set slide = pres.Slides.Add(slideIndex, 1)
    
    ' Set title and subtitle
    slide.Shapes(1).TextFrame.TextRange.Text = title
    slide.Shapes(2).TextFrame.TextRange.Text = subtitle
End Sub