Do you own a Debenu Quick PDF Library version 7, 8, 9, 10, 11, 12, 13 or iSEDQuickPDF license? Upgrade to Debenu Quick PDF Library 14 today!

Debenu Quick PDF Library - PDF SDK Community Forum Homepage
Forum Home Forum Home > For Users of the Library > I need help - I can help
  New Posts New Posts RSS Feed - Delphi Info
  FAQ FAQ  Forum Search   Register Register  Login Login

Delphi Info

 Post Reply Post Reply
Author
Message
chicks View Drop Down
Debenu Quick PDF Library Expert
Debenu Quick PDF Library Expert


Joined: 29 Oct 05
Location: United States
Status: Offline
Points: 251
Post Options Post Options   Thanks (0) Thanks(0)   Quote chicks Quote  Post ReplyReply Direct Link To This Post Topic: Delphi Info
    Posted: 10 Mar 06 at 12:34PM
Delphi gurus:

I have never used Delphi, but looking at the source code for this product, it looks like a decent language.

Most of my "real" development is in languages like Java, C++, php, javascript, etc. My "hobby" development is in PowerBASIC, which I use for QuickPDF projects.

I am more and more disillusioned with PowerBASIC, which appears to be stuck in the early 1990's, and would like to start tinkering with Delphi.

I have heard that there are free "personal" versions of Delphi available, but haven't been able to find them on the Borland site (only keys).

Are the personal versions still available? Is there a low-cost version of Delphi available, perhaps in a book on Delphi? Any other recommendations?

Thanks


Back to Top
hbarclay View Drop Down
Team Player
Team Player


Joined: 29 Oct 05
Location: United States
Status: Offline
Points: 39
Post Options Post Options   Thanks (0) Thanks(0)   Quote hbarclay Quote  Post ReplyReply Direct Link To This Post Posted: 10 Mar 06 at 1:24PM

Borland has done an extremely poor job of marketing Delphi, one of their major mistakes (in my opinion at least) has been in not providing an inexpensive version of Delphi to be used as an entry level version.

Currently the IDE core of BDS is in the process of splitting off from Borland and will soon exist as an independent company. Once that transition has taken place I would expect that the new company will be much more likely to provide free or inexpensive entry level versions.

For now, your best bet is probably to just download the evaluation version. That is a time limited product, but perhaps by the time it expires there will be better options available. You may also find you really like some of the features of the professional version and find it to be worth purchasing.

Harry

Back to Top
Frank View Drop Down
Debenu Quick PDF Library Expert
Debenu Quick PDF Library Expert
Avatar

Joined: 16 Feb 05
Location: Germany
Status: Offline
Points: 10
Post Options Post Options   Thanks (0) Thanks(0)   Quote Frank Quote  Post ReplyReply Direct Link To This Post Posted: 10 Mar 06 at 4:37PM

Hi Chicks

Delphi 2005 Personal Edition comes with an interesting license:
www.delphipraxis.net/topic39064.html

Unfortunately Borland does NOT provide it for download:
www.borland.com/downloads/download_delphi.html

German users are lucky. The german version was included in some computer magazines and now even can be downloaded:
www.dsdt.info/delphi2005download.php
www.delphipraxis.net/delphi2005download.php

A free license you can get from:
http://ussvs-bes1.borland.com/WebDownload/userRegistration.jsp?sid=553

The english version I have not found for download. Maybe it also was included on CDs of english computer magazines. You may ask a seller of those magazines or try web search more thorough as I did.

Frank



Edited by Frank
Back to Top
hbarclay View Drop Down
Team Player
Team Player


Joined: 29 Oct 05
Location: United States
Status: Offline
Points: 39
Post Options Post Options   Thanks (0) Thanks(0)   Quote hbarclay Quote  Post ReplyReply Direct Link To This Post Posted: 10 Mar 06 at 5:20PM
Chicks,

I would recommend that you avoid trying to get started using Delphi 2005. I used Delphi 2005 and had very little trouble with it, but many people reported so many issues that I would be afraid it may give you a negative impression of Delphi.

Try to get Delphi 2006, if you can't get that, then either Delphi 6 or 7 would be preferable to 2005.

Harry
Back to Top
Frank View Drop Down
Debenu Quick PDF Library Expert
Debenu Quick PDF Library Expert
Avatar

Joined: 16 Feb 05
Location: Germany
Status: Offline
Points: 10
Post Options Post Options   Thanks (0) Thanks(0)   Quote Frank Quote  Post ReplyReply Direct Link To This Post Posted: 11 Mar 06 at 2:51AM
Back to Top
chicks View Drop Down
Debenu Quick PDF Library Expert
Debenu Quick PDF Library Expert


Joined: 29 Oct 05
Location: United States
Status: Offline
Points: 251
Post Options Post Options   Thanks (0) Thanks(0)   Quote chicks Quote  Post ReplyReply Direct Link To This Post Posted: 11 Mar 06 at 2:45PM
Thanks, I managed to find Delphi7 Personal on Borland's site in Poland, and have been tinkering for a few hours.

Already looks to be about 1000X more productive than PowerBASIC...
Back to Top
chicks View Drop Down
Debenu Quick PDF Library Expert
Debenu Quick PDF Library Expert


Joined: 29 Oct 05
Location: United States
Status: Offline
Points: 251
Post Options Post Options   Thanks (0) Thanks(0)   Quote chicks Quote  Post ReplyReply Direct Link To This Post Posted: 12 Mar 06 at 12:32AM
OK, over in the "Sample Code" section of this forum, cpri shows a couple of Delphi examples in the "PDF view" topic.

I was able to get both of them to compile (after fighting with "end;" vs. "end." for a while).

The first example runs and displays my PDF just dandy. The second one runs and does nothing at all. I'm assuming the second example is a component of some sort (a VCL?), and that I'm supposed to somehow compile it differently, then somehow use it in another application. Help?


Back to Top
Frans View Drop Down
Beginner
Beginner


Joined: 16 Nov 05
Location: Netherlands
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote Frans Quote  Post ReplyReply Direct Link To This Post Posted: 14 Mar 06 at 2:36PM

Sorry for not answering earlier, but my hard disk crashed Sunday and my spare time has gone into saving the savable and getting things up and running. If anybody has really earned an answer it is you (and Jim and a couple of others like our hosts).

I use C++Builder and not Delphi, but I know just enough Pascal to get by. Cpri (dag cpri!) has built a simple VCL component derived from TScrollBox which takes a PDF as input and displays it (using Borland native JPEG capabilities). To get this component you have to create it in a form, set necessary properties, and call methods.

Since I don't have Delphi I can't give you complete source code, but here is the basic recipe, which no doubt will have a couple of problems:

Create a project with a form.

Put a panel and a button on the form. Stick this declaration into the private section of the form.

PdfPage: TQuickPDFViewer;

In the form show event put.

  PdfPage.Create(panel); // this hosts the component inside the panel

In the button click event put:

  PdfPage.LoadFile := 'path to your PDF file';

  PdfPage.Show;

To be very neat, add PdfPage.Free in the form close event. Very basic, but I hope this helps you on your way.

Greetings,

 

Frans
Back to Top
Frans View Drop Down
Beginner
Beginner


Joined: 16 Nov 05
Location: Netherlands
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote Frans Quote  Post ReplyReply Direct Link To This Post Posted: 15 Mar 06 at 7:52AM

Since the panel is owner of the TQuickPDFViewer, it is responsible for destroying it. Please disregard the PDfPage.Free comment.

Greetings,

Frans
Back to Top
chicks View Drop Down
Debenu Quick PDF Library Expert
Debenu Quick PDF Library Expert


Joined: 29 Oct 05
Location: United States
Status: Offline
Points: 251
Post Options Post Options   Thanks (0) Thanks(0)   Quote chicks Quote  Post ReplyReply Direct Link To This Post Posted: 15 Mar 06 at 10:54AM
Thanks for the info, Frans. I'll try it out next chance I get...
Back to Top
cpri View Drop Down
Team Player
Team Player


Joined: 17 Feb 06
Location: Netherlands
Status: Offline
Points: 28
Post Options Post Options   Thanks (0) Thanks(0)   Quote cpri Quote  Post ReplyReply Direct Link To This Post Posted: 16 Mar 06 at 8:28AM
Frans Thaks for explaining my code
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 11.01
Copyright ©2001-2014 Web Wiz Ltd.

Copyright © 2017 Debenu. Debenu Quick PDF Library is a PDF SDK. All rights reserved. AboutContactBlogSupportOnline Store