0
try
{
Microsoft.Office.Interop.Word.Application WordObj = System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application") as Microsoft.Office.Interop.Word.Application;
Office.CustomXMLParts currClassification = WordObj.ActiveDocument.CustomXMLParts;
}
catch(Exception ex)
{
//I am getting, This command is not available because no document is open. this error here.
}
當我使用上面的代碼中,我得到這個錯誤:此命令不可用
This command is not available because no document is open.
問候
,什麼是你的問題?錯誤消息中的某些內容不清楚? – arrowd
實際上沒有文檔已經打開,我只需要獲取存儲在該文檔的元數據中的信息。 –
對不起,但我沒有創建一個新的實例,我正在第一行中提取該單詞的當前活動實例。 –