BCL Technologies Newsletter
July 12, 2005
To unsubscribe, scroll down to the bottom and click on the unsubscribe link.
 
 

Learn the power of SEC Publisher 4.0 through a Free Web Seminar and find out why filers are switching to SEC Publisher.

BCL is happy to announce a preview session for the eagerly awaited upcoming release of SEC Publisher 4.0. New features in this version include, but are not limited to:

  • HTML Editor: A full function What-You-See-IS-What-You-Get HTML editor
  • Table Formatting: Single-click Table auto-formatting
  • Profile Creating: An editor to create your own table styles and save as many profiles as you like
  • Customization: No need to be restricted by global styles any more! Ability to customize each zone differently (lists, tables, texts, graphics) with it’s own set of styles

Sign Up for the Free Web Seminar
 

 
Web Seminar

 
Date: July 28, 2005
Time: 11:00AM PST
Place: WebEx

Sign Up
Hurry sign up soon,
space's limited.

 

Learn directly from the experts by attending a free, live, online Webinar to discover the ease of use of BCL’s SEC Publisher 4.0 and fund out why SEC filers are switching to it! The Webinar will show you how to dramatically improve your organization’s efficiency by reducing time and cost.

In a forum-like environment, we will also show you:

  • How to automatically convert your documents to SEC compliant HTML and ASCII at a speed you’d not believe (we can convert up to 4 pages per second!)
  • How to edit your HTML filings without seeing a line of HTML code
  • How to create your own look and feel HTML by customizing your output HTML files
  • How to convert your documents into Microsoft Word compatible Rich Text Format (RTF) for proofing.
  • How to use our user-friendly SEC knowledge base.

 

SEC Publisher Tips and Tricks

Can SEC Publisher process a scanned PDF file?

Yes it can. Follow these steps:

  • Load the file up in Adobe Acrobat
  • Select Document: Paper Capture: Start Capture
  • Make sure your output style is “Formatted Text and Graphics”
  • Save the processed file and load onto SEC Publisher 3.1

Got a question?
SEC Publisher web site now has an extensive Knowledge Base, completely searchable by any combination of keywords.

Didn’t find what you were looking for?
Drop us a question by filling out the online form. One of our engineering or support staff will contact you promptly to answer your questions.

 

   


SEC Publisher utilizes the universal PDF format. This gives us the freedom to use a wide variety of different document formats with SEC Publisher. And it exports simple, yet highly effective SEC-compliant HTML"

  - Jesse Schooff,
Automated Filing Services, Inc.

 

easyPDF SDK 4.1

Tips and Tricks

Create PDF from COLD FUSION with BCL’s easyPDF SDK

Now you can create PDF documents from COLD Fusion quickly with some simple code. Simply modify the code below and include in your program, and you can create, merge and manipulate PDF documents from our Cold Fusion application. BCL easyPDF SDK allows true unlimited multithreaded code and robust error handling.

Sample code for managing easyPDF from COLD Fusion application:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>

<cfobject type= "COM" action="Create" class = "easyPdfSdk.Loader" name = "oLoader">
<cfset printer = oLoader.Printer>

<cfset oPrintJob = printer.PrintJob>
<cftry>

<cfset oPrintJob.PrintOut("c:\input.html", "c:\output.pdf")>
<cfoutput >"Success"</cfoutput>
<cfcatch>

<cfoutput>
<p>an exception is caught #cfcatch.Message#</p>
<p>#oPrintJob.ConversionResultMessage#</p>
<p>#oPrintJob.PrinterResultMessage#
</p>
</cfoutput>

</cfcatch>

< /cftry>

< /body>
< /html>

Learn more about easyPDF SDK page