为关闭POWERPOINT,在CLOSE按钮函数呼叫中添加代码:
void CPowerPntDlg::OnBtnClose()
{
if (CanExit())
app.Quit();
}
在步骤7,8,9中的函数是你需要知道应用
程序的基本处理。
现在我们有了运行的POWERPOINT且有了准备,我们需要用它做一些事情像运行幻灯片放映和执行其他行为。
现在让我们运行幻灯片放映。
(9) 为运行幻灯片放映,在RUN按钮函数呼叫中添加代码:
void CPowerPntDlg::OnBtnRun()
{
Presentations = app.GetActivePresentation();
slides = Presentation.GetSlides();
// Show the first slide of the presentation
slide = slides.Item(COleVariant((long)1));
//Run the show
slideshow = Presentation.GetSlideShowSettings();
slideshow.Run();
}
(10) 有时,你可能想从第一张幻灯片中启动全部。要到第一张幻灯片你可以使用这些代码:
void CPowerPntDlg::OnBtnFirst()
{
Presentation = app.GetActivePresentation();
SlideShowWindow = Presentation.GetSlideShowWindow();
View = SlideShowWindow.GetView();
View.First();
}
(11) 相似地,到最后一张幻灯片:
&nbs