So geht das auch nicht. Schau dir mal die VBA-Hilfe zu PowerPoint an. Die ist ein unbezahlbarer Fundus für die Programmierung.
Mal so aus dem Bauch (ungetestet):
Dim newPres As Variant
Set ppApp = CreateObject("PowerPoint.Application")
Set newPres = ppApp.Presentations.Add(True)
newPres.Slides.Add 1, 1
Axel