tags:

views:

29

answers:

1

I have an winform application that retrieves some html. I'm trying to convert the html string to a pdf. This is the first time I've tried using an 3rd part library before and I cant seem to get it right.

I'm using /r:pdfduo-net.dll jsc option and my import statement is below:

import System;
import System.Text;
import System.Data;
import System.Web;
import System.Web.UI;
import System.Net;
import System.Web.Services;
import System.Net.Security;
import System.Security.Cryptography.X509Certificates;
import System.IO;
import System.IO.File;
import System.Windows.Forms;
import System.Threading;
import System.ComponentModel;
import System.Reflection;
import System.Drawing;
import System.Drawing.Graphics;
import System.Collections;
import System.Text.RegularExpressions;
import Accessibility;
import System.Web.Util;
import System.Collections;
import System.Xml;
import DuoDimension;
import DuoDimension.HtmlToPdf;

JSC reports that referenced assembly depends on another assembly that is not referenced or cant be found.

Can anyone tell me what I could be missing?

A: 

Although its not really an answer - just want to close this. Form time's sake, I decided to give up on the dll and go command line with HtmlDoc. Works like a charm.

Dizzle