Jay, If you put it in an MSI then you will only be distributing a single file even though multiple files will exist. Also, you can put the xlsm on a website and download it the first time if they don't already have a file. That's how I do the Time Card add-in. I have a zipped xlt file that downloads, unzips, and then I create a new Excel document from the template.--
You received this message because you are subscribed to the Google Groups "Excel-DNA" group.
To unsubscribe from this group and stop receiving emails from it, send an email to exceldna+u...@googlegroups.com.
To post to this group, send email to exce...@googlegroups.com.
Visit this group at http://groups.google.com/group/exceldna?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Are you adding the .xlsm file as a resource? I thought resources were compiled into the assembly by default (not deployed as a separate file). If so, then you should be able to pack the big, resulting .dll file. Here is some documentation on .NET resources:
http://msdn.microsoft.com/en-us/library/7k989cfy(v=vs.80).aspx
--
Check my example code from earlier mail. You need to dump the bytes to disk and use Excel interop.
Check my example code from earlier mail. You need to dump the bytes to disk and use Excel interop.
--