Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help me in Coding
Message
From
22/06/2000 15:08:02
Tom Gahagan
Alliance Computer Solutions
Thomaston, Georgia, United States
 
 
To
22/06/2000 01:22:01
General information
Forum:
Visual Basic
Category:
Other
Miscellaneous
Thread ID:
00383042
Message ID:
00383378
Views:
23
Amol.....

.........Also can I run a Power Point presentation through VB?
If yes then pls. tell me the code.

You can use automation. In a click event on a form to launch the slide show put:

Dim pwp As Object
Set pwp = createObject("PowerPoint.Application.8")
pwp.Visible = True
pwp.Presentations.Open "c:\....... file.ppt" && path and filename to your show
pwp.ActivePresentation.SlideShowSettings.Run
Set pwp = Nothing


This is covered in Lesson 14 of Micorsoft VB 6.0 Professional Step by Step by Michael Halverson. Great Book!

Hope it helps.

Tom Gahagan
REST
Tom Gahagan
Alliance
Computer Solutions

"Music, like sex, is much too important to be left to professionals."
Robert Shaw
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform