用VS2005, 怎么打开POWERPOINT2003,寻高手

用VS2005, 如何打开POWERPOINT2003,急寻高手
我通过MFC   Class   From   Typelib添加   MSPPT.OLB,我发现Presentations里面没有Open   函数,请问相关的函数是什么,或者怎么添加这个函数,或者哪位能告诉我在我现在的环境下打开Powerpoint文档,并进行编程.

------解决方案--------------------
app.SetVisible(TRUE);
Presentations presSet(app.GetPresentations());
_Presentation presentation=presSet.Open( "C:\\example11.ppt ");
Slides slides=presentation.GetSlides();
_Slide slide;
Shapes shapes;
Shape shape;

int slidecnt, slidesum=slides.GetCount();
for(slidecnt=1;slidecnt <=slidesum;slidecnt++){
slide=slides.Item(COleVariant((long)slidecnt));
shapes=slide.GetShapes();
for(int i=1;i <=shapes.GetCount();i++){
shape.Copy();
……
}
}

------解决方案--------------------

------解决方案--------------------
打开ppt?
是打开ppt文件,还是打开ppt编辑环境?