Skip to content

Instantly share code, notes, and snippets.

View khalifeserge's full-sized avatar

SSMK khalifeserge

  • K-Co
  • USA, Ghana, Vietnam, Thailand, Ethiopia, Kenya, Tanzania, Sierra Leone, Liberia, Haiti, Guatemala, Lebanon
View GitHub Profile
@khalifeserge
khalifeserge / SetLang.bas
Created June 2, 2021 17:27 — forked from tdalon/SetLang.bas
PowerPoint VBA: Set Presentation Language (supporting grouped objects and SmartArt)
Option Explicit
Sub SetLangUS()
Call changeLanguage(ActivePresentation, "US")
End Sub
Sub SetLangUK()
Call changeLanguage(ActivePresentation, "UK")
End Sub