Page 1 of 2

Pdf Reader & Creator

Posted: Wed Aug 04, 2010 3:50 pm
by hungryhounduk
Hi All
while hunting about my External drive i can across some code that i had got from YouTube a few Years back but never really used it, as at the time, i did not know alot about VB ( Well I still dont :) ) But anyway I have put together this Pdf Reader and Convertor ( using the code and a dll file from YouTube).

Features

Opens Pdf Files
Converts Picturefiles to Pdf File Format
**Add Passwords to your Pdfs ( and yes it works)

When you click the Convertor on the Menustrip you will be faced with this form, Browse and or Type in your Path to your Pic, Set your Doc Size and then Convert.
Right Click it for ContextMenu for the Password

**Also i forgot to add, You can save your Password as a Text file on your computer and or External Drive etc, so you dont lose it.

Image

Password Options Open

Image

Chris

Re: Pdf Reader & Creator

Posted: Wed Aug 04, 2010 6:29 pm
by mandai
There are plenty of open source libraries that you can use to create and edit pdf files - check out http://csharp-source.net/open-source/pdf-libraries

Re: Pdf Reader & Creator

Posted: Wed Aug 04, 2010 8:21 pm
by zachman61
looks good hungry

Re: Pdf Reader & Creator

Posted: Wed Aug 04, 2010 9:22 pm
by alex6848
cool :D

Re: Pdf Reader & Creator

Posted: Wed Aug 04, 2010 10:17 pm
by mikethedj4
zachman61 wrote:
looks good hungry
I agree with you on this one, I also dig the video converter too.

Re: Pdf Reader & Creator

Posted: Thu Aug 05, 2010 9:55 pm
by Agust1337
Looks cool, I agree with Mandai it'll make your program even better :)
Keep it up Chris :)

Re: Pdf Reader & Creator

Posted: Fri Aug 13, 2010 11:43 am
by MrAksel
Hey hungry, this might help a little bit on the password saving. Just for extra security. Instead of saving as a text file you should save as binary, and you can try this:
Code: Select all
Dim Bytes2Save() As Byte = System.Text.ASCIIEncoding.ASCII.GetBytes(Password.Text)
My.Computer.FileSystem.WriteAllBytes("filename", Bytes2Save, false)
Helping?

Re: Pdf Reader & Creator

Posted: Fri Aug 13, 2010 1:12 pm
by hungryhounduk
Hi MrAksel
ok thanks for that i will give that a go :)

Cheers

Chris

Re: Pdf Reader & Creator

Posted: Fri Aug 13, 2010 1:31 pm
by Lewis
I have never seen one of these :o

Re: Pdf Reader & Creator

Posted: Fri Aug 13, 2010 1:47 pm
by zachman61
i saw one before