Tag: embed

将Excel作为图像对象embedded到Word文档中。 ColdFusion的

有没有人试图将excel作为图像对象embedded到使用ColdFusion的Word文档中? 迄今为止,在互联网上我没有find任何有关上述问题的参考资料或教程。 我现在的代码没有embedded任何东西,并希望能够共享与该问题相关的链接的人。 快速参考: <!– strPath is cffile.serverFile of cffile action="upload" –> <cfset strpa = session.yo.path /> <cfif not structKeyExists(session, "yo")> <cflocation url="form.cfm" addToken="false"> </cfif> <head> </head> <body> <CFOUTPUT> Excel Table: </br> <cfspreadsheet action="read" src="#GetTempDirectory()##strpa#" query="Result"> <cfdump var="#Result#"></br> TextLabel: #session.yo.text# </br> <!– Embed Excel as Image Object to Word Document here?–> </CFOUTPUT> <a class="word-export" href="javascript:void(0)">Save […]