vote up 1 vote down star

I downloaded an itextsharp DLL that I would like to use in my vb.net 2008 express application.

  1. In which folder should it be placed?
  2. I went into choose items in the toolbox and tried to add it but I got an error

This is what I downloaded:

http://sourceforge.net/projects/itextsharp/

flag

5 Answers

vote up 2 vote down check

You need to reference the DLL inside your project: right-click on the project in solution explorer and then select Add Reference and next select itextsharp.dll. It will then be automatically copied to the project output folder alongside with the executable (usually bin\Debug)

link|flag
vote up 3 vote down

As most other answers have hinted, you can just add a reference to a dll from anywhere.

However it'd probably be a good idea to create a 'lib' (as in library) folder in your project, copy the dll in there and only then reference it. That way if you share your solution via source control then anyone else can use it too. (without having to download or add their own reference to a copy of the dll)

link|flag
1  
+1 Agreed. It good to be in the habit of creating a lib even on throw-away projects. – Rob Sobers Aug 25 at 16:41
vote up 1 vote down

Typicaly you put the dll in ANY directory and set up a reference to it. When compiling, VS adds this dll to the bin directory of the application automatically.

link|flag
vote up 1 vote down

It shouldn't matter where the DLL is places. Download the correct compiled DLL to your computer.

Open your VB.NET solution -> Right Click -> Add Reference...

Browse your PC for the DLL you just downloaded and let Visual Studio do the rest.

link|flag
vote up 1 vote down

Something to keep in mind is that there are no objects from the DLL you can put in and use from the Toolbox; you need to programmatically create iTextSharp objects.

Like this:

Add Imports:

Imports iTextSharp.text.pdf

And in your code:

Dim writer As PdfWriter = PdfWriter.GetInstance(document, iostream)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.