var
msppt : variant ;
begin
msppt := CreateOleObject('Powerpoint.Application') ;
msppt.visible := true ;
msppt.Presentations.open('c:a.ppt') ;
msppt.ActivePresentation.SaveAs('c:b.jpg', pptSaveAsBMP, False);
msppt.Quit;
close;
end;
// 이렇게 하니까, a.ppt 안의 모든 슬라이드가 저장되던데,
(슬라이드1.bmp, 슬라이드2.bmp, 슬라이드3.bmp~~~~~ 이런식으로)
현제보던 슬라이드, 하나만 저장시킬 방법은 없나요?
방법좀 알려주세요~~~