Niente Zero
Programmer
Hi all,
I'd like to generate Excel files from my vbscript (ASP) code without using MSOffice (I know how to do with Automation, but I cannot use it for licensing problems).
So I downloaded EPPlus from [URL unfurl="true"]https://www.nuget.org/api/v2/package/EPPlus/4.5.3.1[/url], renamed package to zip and extracted dll from lib/net40 folder. Then I registered this dll by using this command (in Admin mode):
[pre]c:\windows\Microsoft.NET\Framework\v4.0.30319\regasm EPPlus.dll[/pre]
It was correctly registered (I got this info from Now I'd like to use this object in my code, but I found no instructions. I tried with:
[pre]Set ExcelBook = CreateObject("OfficeOpenXml")[/pre]
and also with
[pre]Set ExcelBook = CreateObject("ExcelPackage")[/pre]
but I cannot find the right name to use.
Anyone can help please? Thank you!
I'd like to generate Excel files from my vbscript (ASP) code without using MSOffice (I know how to do with Automation, but I cannot use it for licensing problems).
So I downloaded EPPlus from [URL unfurl="true"]https://www.nuget.org/api/v2/package/EPPlus/4.5.3.1[/url], renamed package to zip and extracted dll from lib/net40 folder. Then I registered this dll by using this command (in Admin mode):
[pre]c:\windows\Microsoft.NET\Framework\v4.0.30319\regasm EPPlus.dll[/pre]
It was correctly registered (I got this info from Now I'd like to use this object in my code, but I found no instructions. I tried with:
[pre]Set ExcelBook = CreateObject("OfficeOpenXml")[/pre]
and also with
[pre]Set ExcelBook = CreateObject("ExcelPackage")[/pre]
but I cannot find the right name to use.
Anyone can help please? Thank you!