A PowerPoint presenter

  • Thread starter Thread starter BWPanda
  • Start date Start date
B

BWPanda

Hi everyone,

I'm wanting to use VB.NET to display a powerpoint presentation, much the same
way as the presenter that comes with PowerPoint (when used on multiple
monitors).
Basically, I want to show the presentation in one form/window, and in the other,
have controls for moving through the presentation, list of slides, etc.

I don't really want code as such, more like a tutorial on how to do something
like this.
Does anyone know of any resources on the net they can point me to?

BTW, I'm fairly new to VB, so something really basic is preferred, if at all
possible.
Thanks!
 
Hi everyone,

I'm wanting to use VB.NET to display a powerpoint presentation, much the same
way as the presenter that comes with PowerPoint (when used on multiple
monitors).
Basically, I want to show the presentation in one form/window, and in the other,
have controls for moving through the presentation, list of slides, etc.

I don't really want code as such, more like a tutorial on how to do something
like this.
Does anyone know of any resources on the net they can point me to?

BTW, I'm fairly new to VB, so something really basic is preferred, if at all
possible.
Thanks!

Can't say I know how to create an application to display a powerpoint
presentation that doesn't use Powerpoint. You would have to know the
Powerpoint file format and probably use GDI+ to draw all the elements
onto the screen. Since you say you are "fairly new to VB" I doubt you
want to take on a project this big.

I did think about doing a similar program once, so my ideas might work
for you. My approach was to create a simple application that drew full
screen images as the "slides." The slides could be drawn with any
image software, such as Paint.Net or Photoshop, and then loaded into
the application. Then to support Powerpoint I was going to do a bit of
automation that simply opened the specified powerpoint file, and saved
all the slides as images (it's an option in File --> Save As) and then
import those images. This of course would remove all animations from
the slides, but they were unneeded in my project's goals.

Thanks,

Seth Rowe
 
Michel Posseth said:
You could check if one of the components in this download

http://www.microsoft.com/downloads/...27-43ab-4f24-90b7-a94784af71a4&displaylang=en

suppports automation , then you might be able to control the presentation
without Powerpoint installed

if all the target do have powerpoint installed,,, then you might use the
automation interface of powerpoint .


Thanks for that Michel.

Ideally, if I can use PowerPoint viewer to help with the presentation through
VB, that'd be the way to go.
Otherwise, it's safe to assume users have PPT installed.

Now all I need is instructions/a tute on how to do it...
 
rowe_newsgroups said:
Can't say I know how to create an application to display a powerpoint
presentation that doesn't use Powerpoint.

I didn't say I can't use PowerPoint, in fact I'd prefer it.
You would have to know the
Powerpoint file format and probably use GDI+ to draw all the elements
onto the screen. Since you say you are "fairly new to VB" I doubt you
want to take on a project this big.

Yes, it is a big project, but I'm taking it one step at a time, and am in no
rush to get it finished any time soon.
Note: the PowerPoint presentation is just one element of the overall project. At
the moment I'm just looking to get a prototype of the PowerPoint part working.
I did think about doing a similar program once, so my ideas might work
for you. My approach was to create a simple application that drew full
screen images as the "slides." The slides could be drawn with any
image software, such as Paint.Net or Photoshop, and then loaded into
the application. Then to support Powerpoint I was going to do a bit of
automation that simply opened the specified powerpoint file, and saved
all the slides as images (it's an option in File --> Save As) and then
import those images. This of course would remove all animations from
the slides, but they were unneeded in my project's goals.

It sounds like using PowerPoint, or PowerPoint Viewer would make things a bit
easier, so I think I'll take that path.

So my question now is, how do I use the PPT viewer, of PPT itself if I must, to
create my own presentation program as explained in the original question?
 
I didn't say I can't use PowerPoint, in fact I'd prefer it.


Yes, it is a big project, but I'm taking it one step at a time, and am in no
rush to get it finished any time soon.
Note: the PowerPoint presentation is just one element of the overall project. At
the moment I'm just looking to get a prototype of the PowerPoint part working.


It sounds like using PowerPoint, or PowerPoint Viewer would make things a bit
easier, so I think I'll take that path.

So my question now is, how do I use the PPT viewer, of PPT itself if I must, to
create my own presentation program as explained in the original question?

Sorry, I misread the original post. I thought you were trying to do
the Open Office.Org thing and create a program that would be a full
featured PowerPoint application. Michel has already posted two helpful
links so all I can do is wish you good luck!

Thanks,

Seth Rowe
 
Back
Top