Skip to main content

AccessTr.neT


visual basic e powerpoint sunusu ekleme

visual basic e powerpoint sunusu ekleme

#2
Merhabalar

Yeni sunum için aşağıdaki kodu deneyebilir misin?

Kod:
Sub NewPPT()
Dim Obj1 As Object
Set Obj1 = CreateObject("powerpoint.application")
Obj1.Presentations.Add
Obj1.Visible = True
End Sub


Mevcut bir sunuyu açmak içinde aşağıdaki kodu deneyebilirsin.



Kod:
Sub OpenPPT()
Dim Obj1 As Object
Set Obj1 = CreateObject("powerpoint.application")
Obj1.Presentations.Open Filename:="C:\accesstr.ppt"
Obj1.Visible = True
End Sub

™Hiç Birimiz, Hepimiz Kadar Akıllı Olamayız...®

Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Cvp: visual basic e powerpoint sunusu ekleme - Yazar: chopper07 - 12/04/2015, 20:53
Task