#12002/7/8 8:00:56
######################################################
ACTION="CONNECT"
CLASS="Word.Application"
NAME="objWord"
TYPE="COM">
ACTION="CREATE"
CLASS="Word.Application"
NAME="objWord"
TYPE="COM">
/* This will open Word if running locally */
objWord.Visible = false;
/* This returns the 'Documents' collection the Word Object */
objDoc = objWord.Documents;
/* Create a new document */
newDoc = objDoc.Add();
/* Save the document to a location */
newDoc.SaveAs("C:\cfmx\template_new.doc");
/* We specify the range of '0' -- start at the beginning of the document */
docRange = newDoc.Range(0);
/* Add text to the range */
docRange.Text = "Hello World!";
/* Save the changes */
newDoc.Save();
/* Close the document */
newDoc.Close();
/* Quit Word */
objWord.Quit();
############################################################################
请问书写文字有docRange.Text = "Hello World!"这种属性,那么插入图片使用什么属性呀?
听说你有全套的解决方案,可否指教一二呀!