//保存定稿文件 function WebUpdateFile(){ try{ webform.WebOffice.WebUpdateFile(); if (webform.WebOffice.Error!=""){ alert(webform.WebOffice.Status+webform.WebOffice.Error); } }catch(e){} StatusMsg(webform.WebOffice.Status); }
//从服务器上导入数据到文档中 function WebInportText(){ var mText; webform.WebOffice.WebSetMsgByName("COMMAND","INPORTTEXT"); webform.WebOffice.WebSendMessage(); if (webform.WebOffice.Error==""){ mText=webform.WebOffice.WebGetMsgByName("CONTENT"); webform.WebOffice.ActiveDocument.Application.Selection.Range.InsertAfter(mText);