How to save *.ppt, *.pptx files as *.wmv using Interop with C#?

前端 未结 3 1808
Happy的楠姐
Happy的楠姐 2021-01-14 14:29

I tried to do this with the next code:

using Microsoft.Office.Core;
using PowerPoint = Microsoft.Office.Interop.PowerPoint;
using System.IO;
using Microsoft         


        
3条回答
  •  有刺的猬
    2021-01-14 15:14

    Try

    while (oPres.CreateVideoStatus == PpMediaTaskStatus.ppMediaTaskStatusInProgress)
    {
        Thread.Sleep(100);
    }
    

提交回复
热议问题