I'm still kinda new on the programming thing, but i would like to create a program wich could create PDF's with some information in them.
Could anybody recommend a neat way of doing so, i kinda need to create a regular A4 page with a table on it.. and some other informations.
is it possible to create it from within Visual studio 2010 - or do i need some kind of add-in like that?
You probably want to use a library such as iText, which will let you build up a PDF document programmatically.
It's not clear what you mean by "creating it from within Visual Studio 2010" - if you're expecting a visual designer, I think you'll be disappointed; I don't know of anything which would allow you to do that easily. However, it doesn't sound like you have particularly tricky requirements, so just writing the code to do it shouldn't be too hard.
There are several libraries available for that purpose. Here are a few:
As @Jon Skeet said, you can use iTextSharp (which is a C# port of the Java iText).
First, download iTextSharp (currently 5.1.2), extract
itextsharp.dll
to some location and add a reference to it in Visual Studio. Then use the following code which is a full-working WinForms app that creates a very basic table in an A4 document. See the comments in the code for more of an explanation.I have used iTextSharp once to merge and split pdf, but has lost those files. But iTextSharp is good. And regarding your need to create tables and all, I think you will have to write regular code and then you will have to convert them into bytes and then create a pdf file out of it. As I remember, iTextSharp work that way. Hope it helps.