FyTek Forum

Full Version: Error installing 64 Bit Text2PDF DLL
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have downloaded the Win 64-bit DLL, but upon installation, I receive the error message below.
~~~~~~~~~~~~~~~~
C:\Windows\system32\fytek.dll

Unable to register the DLL/OCX: RegSvr21 failed with exit code 0x3.

Click Retry to try again, Ignore to proceed anyway (not recommended), or Abort to cancel installation.
~~~~~~~~~~~~~~~~

[attachment=9]

I am using the installation app that I downloaded to install the DLL.

AHIA,
Larry....
(06-07-2010 09:27 AM)lreames70123 Wrote: [ -> ]I have downloaded the Win 64-bit DLL, but upon installation, I receive the error message below.
~~~~~~~~~~~~~~~~
C:\Windows\system32\fytek.dll

Unable to register the DLL/OCX: RegSvr21 failed with exit code 0x3.

Click Retry to try again, Ignore to proceed anyway (not recommended), or Abort to cancel installation.
~~~~~~~~~~~~~~~~



I am using the installation app that I downloaded to install the DLL.

AHIA,
Larry....

Larry,

You can ignore that one. The fytek.dll is actually an older dll that was used (if needed) with ASP or similar websites to stream PDF output to the browser. It's somewhat obsolete at this point and should be removed from the setup. I'll clean that up next time I compile. Thanks for letting me know that's still in there.

Regards,
Mike Bernardo
FyTek, Inc.
Mike,

I am running the code below
~~~~~~~~~~~~~~~~~~~~
<%@ Language=VBScript %>
<%
vFilePathName = "d:\webs\PDFtest.pdf"
response.Write vFilePathName & "<br>"
Set PDF = Server.CreateObject("fytek.Text2PDF")
Randomize
PDF.OutputFile(vFilePathName)
PDF.PDFcmd("PDFTEST<br>")
response.Write("PDFTEST<br>")
pdfOut = PDF.buildPDF
set PDF = nothing
response.Write vFilePathName & " - CREATED <br>"
%>
~~~~~~~~~~~~~~~~~~~~

When the script gets to the 'pdfOut = PDF.buildPDF' line, it hangs.

Larry...
Reference URL's