如何用狐有调用WORD中的内部对话框?如:我要调用WORD中的字数统计对话框,我在网上找到一段代码,但不知道如何改成狐表的。
不要让我参照WORD VBA,我看过了不太懂所以才来求助老师们。
Microsoft.Office.Interop.Word.Dialog wdlg = wordApp.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogToolsWordCount];
object IncludeFootnotesAndEndnotes = true;
int y = wdlg.Application.ActiveDocument.ComputeStatistics(Microsoft.Office.Interop.Word.WdStatistic.wdStatisticCharactersWithSpaces, ref IncludeFootnotesAndEndnotes);