I am working a little project in which I have designed a Command Button to
view PowerPoint presentations. The problem I have is that, each record has
its own specific PowerPoint presentation. Having a devil of a time coding
this. Can anyone help?
Here is a sniplet of code;
dim ppt As Object
Set ppt = GetObject("PowerPoint.Application")
ppt.Visible = True
ppt.Presentations.Open FileName:=!Me![Work Area]
ppt.SlideShowSettings.Run
ppt.Quit
Whereas the field [Work Area] is where the LINKED Presentations are stored
within the table. Can anyone help or point out the errors of my ways!
Gary A.MacDonald