Just wanna let you know…

The image below is a real screenshot of the latest Turbo Delphi Explorer, the free “limited” version of Turbo Delphi Professional. No any kind of image manipulations is occured. Yes, installing custom components on Turbo Delphi Explorer is very possible, and IMHO it is also legal (speaking of law). πŸ™‚

screen_resize.png

After I found that Turbo Delphi can be installed without any dependencies to .Net framework libraries here (since Turbo Delphi actually is BDS 2006 with single personality), I also found that the custom or third party component installation limitation is not truly true! Borland should have said “can’t add additional packages” instead of “components”. πŸ™‚

No, there’s no illegal action requires to overcome this limitation. No cracking, no hacking, I even didn’t change any single bit of the original files. I suspicious that DevCo actually provided this trick intentionally and let us found it. It’s very hard to believe that they forgot to disable this trick.

To have your third-party or custom component installed, is very simple and straight-forward. All you need to do is these 3 steps…

  1. Declare your component within dclusr.dpk (within /lib folder of your Turbo Delphi installation) which is a Delphi’s default package to store custom components.
  2. Compile the package, and Delphi will produce the package library (.bpl extension) in BPL output directory, of course if the compilation is success.
  3. Install the package library (dclusr.bpl) through Install Packages menu item, as usual. Yes, Delphi will accept to install this package! πŸ™‚

Viola… your custom component(s) is already on the Tool Palette. πŸ™‚ Yes, we will be tiered to one-single component package for ALL of our custom components, the dclusr package. I think this is the true limitation of Turbo Delphi Explorer. *this must be Nick‘s idea* πŸ™‚ But, for me personally, this is more than enough! πŸ˜€

So… enjoy the free Turbo Delphi Explorer! πŸ™‚

Note:
I never meant this trick would discourage people from purchasing the Turbo Delphi Professional edition. This solution would help if we only use couple of custom components, or for component testing purpose. Besides, it’ll be difficult to manage large number of components within a single package. This trick available is more because the generousity of Borland/DevCo since actually they already knew this “hole” from the testing stage but still let it open. For more convenience solution, please purchase the Turbo Delphi Professional edition. πŸ™‚

114 Responses to Just wanna let you know…

  1. Cristiano says:

    I do not succeed to install the examples package, you could explain the procedure step by step? (I’m not a delphi expert πŸ˜‰ )
    Thanks

    Cristiano

  2. bee says:

    There’s no more steps other than three steps I mentioned above. It should be that simple. What kind of error message(s) you got?

  3. Iwan says:

    Hi bee, have u tried to install using the steps given?
    I’ve tried it but it doesn’t seem to work. Maybe because it is for BDS 2005.
    Can u tell me how u install them without .NET?

  4. bee says:

    @Iwan:
    Yes, it works for BDS 2006 and Turbo Delphi as well. I did follow all the steps, and it worked nicely. πŸ™‚

  5. Cristiano says:

    As I have said, I’m not a delphi expert.
    I tried opening dclusr.dpk from the file menu, right-click->add, select a .pas file from sample components, r-click->compile, r-click->install
    The package seems installed, but nothing change on the palette and the package not contains any component

  6. Dalton says:

    Could you post a copy of your dcluser.dpk file? This would show us exactly the changes you made.

    Thanks

  7. Cristiano says:

    package dclusr;

    {$R *.res}
    {$ALIGN 8}
    { ASSERTIONS ON}
    {$BOOLEVAL OFF}
    { DEBUGINFO OFF}
    {$EXTENDEDSYNTAX ON}
    {$IMPORTEDDATA ON}
    {$IOCHECKS ON}
    { LOCALSYMBOLS OFF}
    {$LONGSTRINGS ON}
    {$OPENSTRINGS ON}
    {$OPTIMIZATION ON}
    {$OVERFLOWCHECKS OFF}
    {$RANGECHECKS OFF}
    { REFERENCEINFO ON}
    {$SAFEDIVIDE OFF}
    { STACKFRAMES OFF}
    {$TYPEDADDRESS OFF}
    {$VARSTRINGCHECKS ON}
    {$WRITEABLECONST ON}
    {$MINENUMSIZE 1}
    {$IMAGEBASE $51000000}
    {$DESCRIPTION ‘Borland User Components’}
    {$LIBSUFFIX ‘100’}
    {$DESIGNONLY}
    {$IMPLICITBUILD ON}

    requires
    rtl,
    vcl,
    designide;

    contains
    Gauges in ‘..\source\Win32\Samples\Source\Gauges.pas’;

    end.

  8. bee says:

    The problem isn’t with the dclusr.dpk. It’s on gauge.pas itself. Component source file need to have Register procedure to make it appears on component palette. These are what you need to do…

    1. Open gauge.pas
    2. On Interface section, add declaration of Register procedure, without any parameters.
    3. On Implementation section, add Register procedure, like this:

    procedure Register;
    begin
    RegisterComponents(‘Samples’, [TGauge]);
    end;

    4. Save gauge.pas
    5. Open dclusr.dpk, add gauge.pas unit, compile and install the package.
    6. You should find TGauge component on Sample palette. πŸ™‚

    Good luck!

  9. Iwan says:

    I’ve tried it again, but still got problem with error message when loading turbo delphi, it says need .net framework on loading borland.interop.dll assembly, but after that the turbo IDE is loaded and i can use it as u suggest. Can u help me what is missing?

  10. bee says:

    @Iwan:
    If you totally uninstall .Net libraries, then you’ll get error message box during TD loading. To remove this error message, you need to remove some registry entries from “Known IDE Packages” key of TD registry tree. I forgot which entry is it, just try to remove .Net dependent package. I found it through trial-and-error, because I’m to lazy to investigate each package file. πŸ™‚ Unfortunately I didn’t note down the package name that cause the error message. 😦

  11. ONE says:

    Thanks! reminds me of Delphi 1 & 2!

  12. Cristiano says:

    @bee:
    Works, thanks

  13. Cahyoga says:

    Mas bee, kok dclusr.bpl saya masih dianggap dari third party ya?
    Jadinya ga bisa diinstall.

  14. bee says:

    Masa’ sih? Saya udah ber-kali2 instal/uninstal dclusr.bpl gak masalah tuh. Kapan donlod TDE-nya? Jgn2 udah ditutup fitur ini ama DevCo. πŸ˜€

  15. Balu says:

    Hello,

    here’s the first tutorial how to install components: http://danielstools.de/?page_id=107, but:

    This hack isn’t possible any longer with versions downloaded after the 9th of september 2006. It seems as if Borland changed the download files in secret. Sorry for that, but it was IMHO inevitable…

    P.S.: It still works with the versions downloaded the first days….

  16. iwan says:

    @bee:
    I’ve tried to changed the registry, but don’t know exactly which one should be turned off. Well i guess i’ll have it a try and error then. Thx

  17. bee says:

    @Balu:
    I found the Daniels’ tutorial right after I found this hack myself. I was so surprised to know that dclusr is still allowed to be installed then I searched about this hack on the internet, and google took me to the Daniels’ tutorial. I was so glad to know that somebody elses knew about this as well. πŸ™‚

  18. bee says:

    @Balu:

    The opinions of this person is interesting and worth considered by Borland/DevCo… http://thomasvlugt.blogspot.com/

  19. Balu says:

    @bee:

    Thanks for the links, but I’ve already email contact with thomas. πŸ˜‰

    (I’m the author of the tutorials on danielstools.de πŸ˜‰ )

  20. sujono says:

    Mas be saya sudah ubah sesuai dgn yg diatas lalu saya compile koq paket instalasinya tidak ada yach??

  21. NewZeek says:

    Hi, I wrote a tutorial in portuguese about install third party components, more informations, visit:

    http://newzeek.blogspot.com

    NewZeek

  22. Great! I could install the following necessary components at my job:

    -> RxLib
    -> QuickReport
    -> Direct Oracle Access
    -> FIBPlus
    -> + a couple of components developed by myself!

    Thank you very much for all the info!

    Regards,

    Bruno Freitas

  23. newzeek says:

    Hi, upon request I translated this exactly article in English that can below be found in link:

    http://newzeek.blogspot.com/

  24. bo_bertel says:

    I think the possibility to install dclusr.bpk does no longer exist. I downloaded Turbo Delphi Explorer yesterday and installed it today. When I try to install dclusr.bpk I get the known license error, even if dclusr.bpk does not contain any components.

  25. @bo_bertel

    You just need the older dclusr package set.

    Just download it here:

    http://rapidshare.de/files/34091825/dclusr.zip.html

    Unzip it int the lib folder, telling to overwrite files!

    Now you are FREE again!

    Best regards,

    Bruno Freitas

  26. @bo_bertel:

    Another way is to download the TORRENT files. They were not updated, and remains FREE!

    Best Regards,

    Bruno Freitas

  27. helton alves costa says:

    ok

  28. John says:

    To All Software Developers:

    If you sell software and can afford Turbo Delphi Pro, please buy it. It is important to
    reinvest in DevCo so that they can come up with innovations to Delphi. Employees need to be paid, Research and Development requires financial resources.

    Invest in Delphi!!

  29. @John:

    I agree with you! Borland/DevCo is great, I just love their products! I develop for in-house use only, and if I were a software seller, I would buy Turbo Delphi Pro!

    As a university teacher, I think I can buy Turbo Delphi Pro with a good discount! I am going to look after it!

    Long live Borland!

    Regards,

    Bruno Freitas

  30. bee says:

    @John:
    I agree with you too! Read my additional Note above. πŸ™‚

    Delphi is great product, but unfortunately it’s under a bad management of Borland. Hopefully DevCo will be better than Borland.

    Just in case one can’t afford Turbo Delphi (at any prices), there’s a free open source alternative. I consider it as cousin of Delphi, his name is Lazarus. You can read more about it on my next post.

  31. […] On the previous post, I talked about Turbo Delphi (Explorer), now I’m gonna talk a little bit about her cousin… Lazarus. And for the starting, here’s his screenshot of the latest release… […]

  32. Jan says:

    Hi!

    Thanks for your hint how to add components! Works fine with CoolTrayIcon.
    Do you use the FlatStyle component as shown on the photo?
    Where will I find the source code in order to install it? I found a ~300k zip file on the Internet, but was unable to compile it because of a missing DesgnIntf.dcu

    Could someone give me a hint where to find the right source and how to install the flat styles?

  33. @Jan:

    Please, post the contents of your dclusr.dpk file!

    Best regards,

    Bruno Freitas

  34. Jan says:

    @Bruno Freitas:

    Hello Bruno!
    This is my dclusr.dpk:

    ——————————-
    package dclusr;

    {$R *.res}
    {$R ‘C:\CoolTrayIcon\CoolTrayIcon.dcr’}
    {$R ‘C:\CoolTrayIcon\TextTrayIcon.dcr’}
    {$ALIGN 8}
    { ASSERTIONS ON}
    {$BOOLEVAL OFF}
    { DEBUGINFO OFF}
    {$EXTENDEDSYNTAX ON}
    {$IMPORTEDDATA ON}
    {$IOCHECKS ON}
    { LOCALSYMBOLS OFF}
    {$LONGSTRINGS ON}
    {$OPENSTRINGS ON}
    {$OPTIMIZATION ON}
    {$OVERFLOWCHECKS OFF}
    {$RANGECHECKS OFF}
    { REFERENCEINFO ON}
    {$SAFEDIVIDE OFF}
    { STACKFRAMES OFF}
    {$TYPEDADDRESS OFF}
    {$VARSTRINGCHECKS ON}
    {$WRITEABLECONST ON}
    {$MINENUMSIZE 1}
    {$IMAGEBASE $51000000}
    {$DESCRIPTION ‘Borland User Components’}
    {$LIBSUFFIX ‘100’}
    {$DESIGNONLY}
    {$IMPLICITBUILD ON}

    requires
    rtl,
    vcl,
    designide;

    contains
    CoolTrayIcon in ‘C:\CoolTrayIcon\CoolTrayIcon.pas’,
    RegisterTrayIcons in ‘C:\CoolTrayIcon\RegisterTrayIcons.pas’,
    SimpleTimer in ‘C:\CoolTrayIcon\SimpleTimer.pas’,
    TextTrayIcon in ‘C:\CoolTrayIcon\TextTrayIcon.pas’;

    end.
    ——————————-

    There was no problem to install the CoolTray component.
    But I could not install FlatStyle because of the missing ‘DesgnIntf.dcu’. I found a file ‘DesignIntf.dcu’ in ‘\BDS\source\..’ and used this instead. Without any success. I got up to 9 errors, because Delphi could not find the used classes of the FlatStyle component.

  35. @Jan:

    Just change the line from:

    FlatGraphics, SysUtils, DsgnIntf, Dialogs;

    To:

    FlatGraphics, SysUtils, Dialogs, RTLConsts, DesignIntf, DesignEditors, VCLEditors;

    It’s not a problem with TurboDelphi/dclusr.dpk. It’s a problem with FlatStyle installation procedure (it just thinks it’s running on Delphi 5). Enjoy! πŸ˜‰

    Best regards,

    Bruno Freitas

  36. bee says:

    @Jan:
    Yes, I use FlatStyle package. One of the best UI package for Delphi, even until now. I can’t live without anymore. Unfortunately its development has been stopped since 2002, CMIIW. 😦 FlatStyle package I have had been modified heavily by myself, e.g. fixed some bugs, add compatibility with newer Delphi versions, do some minor tweaks, add some little features, etc. If you interested to have my version of FlatStyle, contact me at bee dot ography at gmail dot com.

    @Bruno:
    Thank you, Bruno. πŸ™‚

  37. Jasper says:

    Hi,

    I downloaded Turbo Delphi Explorer on 27 september.
    I installed it on my laptop, tried to add some components (trough dclusr). It worked fine.
    I also installed it on my desktop, after which i ran the Hotfix-rollup (http://cc.borland.com/item/24132). On my desktop i couldn’t add any components 😦

    So i looks like it was patched in de hotfix-rollup, and probably you can’t run any updates on turbo delphi explorer if you want to keep the option of adding components.

    Best regards,
    Jasper

  38. Fatum says:

    Hi,

    I made dclusr source for Turbo C++.
    Download here:
    http://rapidshare.de/files/35566999/dclusr_Turbo_CPP.zip

    Best regards
    Fatum

  39. @Jasper:

    Read a few posts above and you will find the original zipped dclusr.dpk package. Unzip it under lib folder and you are ready to go, even if you applied the hotfix! πŸ˜‰

    Best regards,

    Bruno

  40. Jasper says:

    Thanks Bruno.
    It seems to work fine with delphix for Delphi 7
    (http://maxxdelphisite.free.fr/delphix.htm)
    When i add all the .pas file to dclusr.dpk some errors occur (some classes not found. E.g. TSpinEdit). But so far it works fine anyway.

    Best regards,
    Jasper

  41. Ben says:

    Mine doesnt work

    I recently installed Turbo Delphi explorer
    Opened dclusr.dpk
    added gauges.pas to it, added register procedure to gauges.pas
    it compiled
    then i installed it
    it says that it has now been added
    restart turbo explorer
    create a new form and no samples palette in the tool palette

    Mine doesnt work

    I went to see what components were listed using install components and when i clicked on my β€˜Borland User Components’
    it shows

    C:\Users\Ben\Documents\Borland Studio Projects\Bpl\dclusr100.bpl

    Any clues?

    Ben

    Any solutions?
    my email is aivsprogrammer@hotmail.com

    Ben

  42. @Ben:

    When you list the installed packages, is Borland User Components’ checkbox checked? Maybe the component was installed on a palette other than ‘Samples’. Check them all!

    Best regards,

    bootsector

  43. Ben says:

    Yes ‘Borland User Components’ is checked.
    NO components are inside it.
    And I check all the component palettes and I didn’t find Gauges
    anywhere

  44. Nerog says:

    @Fatum (or anyone else): Could you please upload the “dclusr” source for Turbo C++ again. The download isn’t available anymore.

  45. bee says:

    Or you can simply use TurboTweak here:
    http://alvarogp.googlepages.com/index.htm#turbotweaks

    A naughty tweak, IMO. Please, don’t start legal issues about it. πŸ˜€

  46. Oliver says:

    I would also be happy, if somebody (Fatum or anyone else) can
    make available again the β€œdclusr” source for Turbo C++

  47. Nerog says:

    Much thanks bee. It’s a very cool tweak. I didn’t know something like this exists. And since it works, I won’t start any discussion about it. πŸ˜‰

    I just don’t get the TShell(-TreeView, -ListView, etc.) componets to appear at design time in Turbo C++. In Delphi it works.

  48. marfi says:

    Hi, i have downloaded TurboDelphi for Win32 yesterday, unlocked its features by TurboTweak and tried to add some user component. I’ve added it into User Components package, compiled and intalled it (everything seems to be ok), but when I add the component to my application, the Delphi cannot find the component unit (message “Cannot resolve unit name ‘xyz'” appears in the code editor). I tried to set “Library” and “Browsing” paths in the “Options” dialog to the directory where the *.pas and *.dcu files are stored, but the problem persists.

    Is there any other option/path which should be set to make all things work well?

  49. Andreas says:

    @marfi, when you build the package, delphi calls it dclusr100.bpl and places it in a different folder. Just search for it on your C: drive and copy it to the ‘bin’ folder of your Turbo install.

    @all, I am also interested in the the “dclusr” for Turbo C++ since I would like to add some components there.

  50. marfi says:

    @Andreas

    I found ‘dclusr100.bpl’ in Documents And Settings directory, copied it into ‘bin’ directory, but it still doesn’t work. I have tried also to copy all files from Bpl dir into ‘lib’, but the result is the same 😦 Maybe it is next restriction of TurboDelphi Explorer… So, any other suggestions?

  51. bee says:

    It seems that there would be more and more limitations to the next TDE release. dclusr trick is no longer working after hotfix is applied. I hope CodeGear will address this issue. For the moment, we can use TurboTweak instead. πŸ˜›

  52. Lusidvicel says:

    Hello, i love beeography.wordpress.com! Let me in, please πŸ™‚

  53. Haegar says:

    Hello,
    I have the same problem as bee wrote on October 21st. but with FreeReport-components. I have installed FreeReport es discribed on http://newzeek.wordpress.com/. TurboDelphi shows all teh FR-Components when I look into installed components in dclusr,but there is no new palette.

    Can anyone help?
    many Thanks!

  54. bee says:

    Read what I wrote about TurboTweak on December 16th. TurboTweak do “the trick” for us with ease. πŸ˜‰

  55. Haegar says:

    I have tried this too, but it only does a part of the trick. I’m able to install components using components->install packages->add. After that they are shown as separate packages in the list of installed components (and all components are visible in the package using the components-button in the package-list) but they don’t arrive in the tool-palette. Not as separate tabs and not “hiding” in any othe tab.
    Maybe that problem occures because of my german version of TurboDelphi?

  56. Dels says:

    this some of the application the speedup turbo delphi and rise productivity

    delphi speedup & DDevExtension
    http://andy.jgknet.de/dspeedup/index.php

    GExpert
    http://www.gexperts.org/

    regards,
    dels

    Note: thx ya Mas Bee atas artikel di blognya…

  57. Skurtid says:

    Saya sudah berhasil install component FreeReport. tapi kenapa yah mas Bee selalu muncul error message “cannot access package information ‘dclusr100.bpl’. pada saat saya mau mengunakan komponen tersebut.

    Thx

  58. Indian28 says:

    Is there any way to add a third party package like Txlsfile or quickreport to TurboDelphi without any .pas file? I have only the dcu-s of Txlsfile and the files from D7 version of quickreport… Or does anybody have these source codes ?
    Thx

  59. […] the previous post, I talked about Turbo Delphi (Explorer), now I’m gonna talk a little bit about her cousin… […]

  60. Freddy says:

    Great!
    Thank you for the information!
    I just want my Turbo C++ to work without .NET crap. πŸ˜€
    I don’t care about components.
    I’m going to try the steps to remove .NET from Turbo Delphi in Turbo C++.

  61. kiyat says:

    good news, and the file is up to 300Mb to download. 😦

  62. kiyat says:

    akhirnya ter Instal juga πŸ˜€

  63. Edson Lopes says:

    My Copy (DCLURS) With Zeos and FreeReports!!!

    package dclusr;

    {$R *.res}
    {$R ‘..\imports\zeos\src\component\ZComponent.dcr’}
    {$R ‘..\Imports\freereport\Source\FR_REG.dcr’}
    {$ALIGN 8}
    { ASSERTIONS ON}
    {$BOOLEVAL OFF}
    { DEBUGINFO OFF}
    {$EXTENDEDSYNTAX ON}
    {$IMPORTEDDATA ON}
    {$IOCHECKS ON}
    { LOCALSYMBOLS OFF}
    {$LONGSTRINGS ON}
    {$OPENSTRINGS ON}
    {$OPTIMIZATION ON}
    {$OVERFLOWCHECKS OFF}
    {$RANGECHECKS OFF}
    { REFERENCEINFO ON}
    {$SAFEDIVIDE OFF}
    { STACKFRAMES OFF}
    {$TYPEDADDRESS OFF}
    {$VARSTRINGCHECKS ON}
    {$WRITEABLECONST ON}
    {$MINENUMSIZE 1}
    {$IMAGEBASE $51000000}
    {$DESCRIPTION ‘Borland User Components’}
    {$LIBSUFFIX ‘100’}
    {$DESIGNONLY}
    {$IMPLICITBUILD ON}

    requires
    rtl,
    vcl,
    designide,
    dbrtl,
    bdertl;

    contains
    ZVariant in ‘..\imports\zeos\src\core\ZVariant.pas’,
    ZCollections in ‘..\imports\zeos\src\core\ZCollections.pas’,
    ZCompatibility in ‘..\imports\zeos\src\core\ZCompatibility.pas’,
    ZExpression in ‘..\imports\zeos\src\core\ZExpression.pas’,
    ZExprParser in ‘..\imports\zeos\src\core\ZExprParser.pas’,
    ZExprToken in ‘..\imports\zeos\src\core\ZExprToken.pas’,
    ZFunctions in ‘..\imports\zeos\src\core\ZFunctions.pas’,
    ZMatchPattern in ‘..\imports\zeos\src\core\ZMatchPattern.pas’,
    ZSysUtils in ‘..\imports\zeos\src\core\ZSysUtils.pas’,
    ZTokenizer in ‘..\imports\zeos\src\core\ZTokenizer.pas’,
    ZVariables in ‘..\imports\zeos\src\core\ZVariables.pas’,
    ZClasses in ‘..\imports\zeos\src\core\ZClasses.pas’,
    ZMessages in ‘..\imports\zeos\src\core\ZMessages.pas’,
    ZSybaseToken in ‘..\imports\zeos\src\parsesql\ZSybaseToken.pas’,
    ZGenericSqlToken in ‘..\imports\zeos\src\parsesql\ZGenericSqlToken.pas’,
    ZInterbaseAnalyser in ‘..\imports\zeos\src\parsesql\ZInterbaseAnalyser.pas’,
    ZInterbaseToken in ‘..\imports\zeos\src\parsesql\ZInterbaseToken.pas’,
    ZMySqlAnalyser in ‘..\imports\zeos\src\parsesql\ZMySqlAnalyser.pas’,
    ZMySqlToken in ‘..\imports\zeos\src\parsesql\ZMySqlToken.pas’,
    ZPostgreSqlAnalyser in ‘..\imports\zeos\src\parsesql\ZPostgreSqlAnalyser.pas’,
    ZPostgreSqlToken in ‘..\imports\zeos\src\parsesql\ZPostgreSqlToken.pas’,
    ZScriptParser in ‘..\imports\zeos\src\parsesql\ZScriptParser.pas’,
    ZSelectSchema in ‘..\imports\zeos\src\parsesql\ZSelectSchema.pas’,
    ZSybaseAnalyser in ‘..\imports\zeos\src\parsesql\ZSybaseAnalyser.pas’,
    ZGenericSqlAnalyser in ‘..\imports\zeos\src\parsesql\ZGenericSqlAnalyser.pas’,
    ZOracleToken in ‘..\imports\zeos\src\parsesql\ZOracleToken.pas’,
    ZOracleAnalyser in ‘..\imports\zeos\src\parsesql\ZOracleAnalyser.pas’,
    ZSqLiteToken in ‘..\imports\zeos\src\parsesql\ZSqLiteToken.pas’,
    ZSqLiteAnalyser in ‘..\imports\zeos\src\parsesql\ZSqLiteAnalyser.pas’,
    ZPlainPostgreSqlDriver in ‘..\imports\zeos\src\plain\ZPlainPostgreSqlDriver.pas’,
    ZPlainDbLibDriver in ‘..\imports\zeos\src\plain\ZPlainDbLibDriver.pas’,
    ZPlainDbLibMsSql7 in ‘..\imports\zeos\src\plain\ZPlainDbLibMsSql7.pas’,
    ZPlainDbLibSybaseAse125 in ‘..\imports\zeos\src\plain\ZPlainDbLibSybaseAse125.pas’,
    ZPlainDriver in ‘..\imports\zeos\src\plain\ZPlainDriver.pas’,
    ZPlainInterbase5 in ‘..\imports\zeos\src\plain\ZPlainInterbase5.pas’,
    ZPlainInterbase6 in ‘..\imports\zeos\src\plain\ZPlainInterbase6.pas’,
    ZPlainInterbaseDriver in ‘..\imports\zeos\src\plain\ZPlainInterbaseDriver.pas’,
    ZPlainLoader in ‘..\imports\zeos\src\plain\ZPlainLoader.pas’,
    ZPlainMySqlConstants in ‘..\imports\zeos\src\plain\ZPlainMySqlConstants.pas’,
    ZPlainMySql320 in ‘..\imports\zeos\src\plain\ZPlainMySql320.pas’,
    ZPlainMySql323 in ‘..\imports\zeos\src\plain\ZPlainMySql323.pas’,
    ZPlainMySql40 in ‘..\imports\zeos\src\plain\ZPlainMySql40.pas’,
    ZPlainMySql41 in ‘..\imports\zeos\src\plain\ZPlainMySql41.pas’,
    ZPlainMySql5 in ‘..\imports\zeos\src\plain\ZPlainMySql5.pas’,
    ZPlainMySqlDriver in ‘..\imports\zeos\src\plain\ZPlainMySqlDriver.pas’,
    ZPlainPostgreSql7 in ‘..\imports\zeos\src\plain\ZPlainPostgreSql7.pas’,
    ZPlainPostgreSql8 in ‘..\imports\zeos\src\plain\ZPlainPostgreSql8.pas’,
    ZPlainDb2 in ‘..\imports\zeos\src\plain\ZPlainDb2.pas’,
    ZPlainDb2Driver in ‘..\imports\zeos\src\plain\ZPlainDb2Driver.pas’,
    ZPlainFirebird10 in ‘..\imports\zeos\src\plain\ZPlainFirebird10.pas’,
    ZPlainFirebird15 in ‘..\imports\zeos\src\plain\ZPlainFirebird15.pas’,
    ZPlainFirebird20 in ‘..\imports\zeos\src\plain\ZPlainFirebird20.pas’,
    ZPlainFirebirdDriver in ‘..\imports\zeos\src\plain\ZPlainFirebirdDriver.pas’,
    ZPlainFirebirdInterbaseConstants in ‘..\imports\zeos\src\plain\ZPlainFirebirdInterbaseConstants.pas’,
    ZPlainAdoDriver in ‘..\imports\zeos\src\plain\ZPlainAdoDriver.pas’,
    ZPlainAdo in ‘..\imports\zeos\src\plain\ZPlainAdo.pas’,
    ZPlainOracleDriver in ‘..\imports\zeos\src\plain\ZPlainOracleDriver.pas’,
    ZPlainOracle9i in ‘..\imports\zeos\src\plain\ZPlainOracle9i.pas’,
    ZPlainSqLite28 in ‘..\imports\zeos\src\plain\ZPlainSqLite28.pas’,
    ZPlainSqLite3 in ‘..\imports\zeos\src\plain\ZPlainSqLite3.pas’,
    ZPlainSqLiteDriver in ‘..\imports\zeos\src\plain\ZPlainSqLiteDriver.pas’,
    ZPlainASADriver in ‘..\imports\zeos\src\plain\ZPlainASADriver.pas’,
    ZPlainASA9 in ‘..\imports\zeos\src\plain\ZPlainASA9.pas’,
    ZPlainASA8 in ‘..\imports\zeos\src\plain\ZPlainASA8.pas’,
    ZPlainASA7 in ‘..\imports\zeos\src\plain\ZPlainASA7.pas’,
    ZDbcUtils in ‘..\imports\zeos\src\dbc\ZDbcUtils.pas’,
    ZDbcCachedResultSet in ‘..\imports\zeos\src\dbc\ZDbcCachedResultSet.pas’,
    ZDbcConnection in ‘..\imports\zeos\src\dbc\ZDbcConnection.pas’,
    ZDbcDbLib in ‘..\imports\zeos\src\dbc\ZDbcDbLib.pas’,
    ZDbcDbLibMsSqlMetadata in ‘..\imports\zeos\src\dbc\ZDbcDbLibMsSqlMetadata.pas’,
    ZDbcDbLibResultSet in ‘..\imports\zeos\src\dbc\ZDbcDbLibResultSet.pas’,
    ZDbcDbLibStatement in ‘..\imports\zeos\src\dbc\ZDbcDbLibStatement.pas’,
    ZDbcDbLibSybaseMetadata in ‘..\imports\zeos\src\dbc\ZDbcDbLibSybaseMetadata.pas’,
    ZDbcDbLibUtils in ‘..\imports\zeos\src\dbc\ZDbcDbLibUtils.pas’,
    ZDbcGenericResolver in ‘..\imports\zeos\src\dbc\ZDbcGenericResolver.pas’,
    ZDbcInterbase6 in ‘..\imports\zeos\src\dbc\ZDbcInterbase6.pas’,
    ZDbcInterbase6Metadata in ‘..\imports\zeos\src\dbc\ZDbcInterbase6Metadata.pas’,
    ZDbcInterbase6ResultSet in ‘..\imports\zeos\src\dbc\ZDbcInterbase6ResultSet.pas’,
    ZDbcInterbase6Statement in ‘..\imports\zeos\src\dbc\ZDbcInterbase6Statement.pas’,
    ZDbcInterbase6Utils in ‘..\imports\zeos\src\dbc\ZDbcInterbase6Utils.pas’,
    ZDbcIntfs in ‘..\imports\zeos\src\dbc\ZDbcIntfs.pas’,
    ZDbcMetadata in ‘..\imports\zeos\src\dbc\ZDbcMetadata.pas’,
    ZDbcMySql in ‘..\imports\zeos\src\dbc\ZDbcMySql.pas’,
    ZDbcMySqlMetadata in ‘..\imports\zeos\src\dbc\ZDbcMySqlMetadata.pas’,
    ZDbcMySqlResultSet in ‘..\imports\zeos\src\dbc\ZDbcMySqlResultSet.pas’,
    ZDbcMySqlStatement in ‘..\imports\zeos\src\dbc\ZDbcMySqlStatement.pas’,
    ZDbcMySqlUtils in ‘..\imports\zeos\src\dbc\ZDbcMySqlUtils.pas’,
    ZDbcPostgreSql in ‘..\imports\zeos\src\dbc\ZDbcPostgreSql.pas’,
    ZDbcPostgreSqlMetadata in ‘..\imports\zeos\src\dbc\ZDbcPostgreSqlMetadata.pas’,
    ZDbcPostgreSqlResultSet in ‘..\imports\zeos\src\dbc\ZDbcPostgreSqlResultSet.pas’,
    ZDbcPostgreSqlStatement in ‘..\imports\zeos\src\dbc\ZDbcPostgreSqlStatement.pas’,
    ZDbcPostgreSqlUtils in ‘..\imports\zeos\src\dbc\ZDbcPostgreSqlUtils.pas’,
    ZDbcResultSet in ‘..\imports\zeos\src\dbc\ZDbcResultSet.pas’,
    ZDbcResultSetMetadata in ‘..\imports\zeos\src\dbc\ZDbcResultSetMetadata.pas’,
    ZDbcStatement in ‘..\imports\zeos\src\dbc\ZDbcStatement.pas’,
    ZDbcCache in ‘..\imports\zeos\src\dbc\ZDbcCache.pas’,
    ZDbcAdoMetadata in ‘..\imports\zeos\src\dbc\ZDbcAdoMetadata.pas’,
    ZDbcAdoResultSet in ‘..\imports\zeos\src\dbc\ZDbcAdoResultSet.pas’,
    ZDbcAdoStatement in ‘..\imports\zeos\src\dbc\ZDbcAdoStatement.pas’,
    ZDbcAdoUtils in ‘..\imports\zeos\src\dbc\ZDbcAdoUtils.pas’,
    ZDbcLogging in ‘..\imports\zeos\src\dbc\ZDbcLogging.pas’,
    ZDbcAdo in ‘..\imports\zeos\src\dbc\ZDbcAdo.pas’,
    ZDbcOracle in ‘..\imports\zeos\src\dbc\ZDbcOracle.pas’,
    ZDbcOracleUtils in ‘..\imports\zeos\src\dbc\ZDbcOracleUtils.pas’,
    ZDbcOracleStatement in ‘..\imports\zeos\src\dbc\ZDbcOracleStatement.pas’,
    ZDbcOracleResultSet in ‘..\imports\zeos\src\dbc\ZDbcOracleResultSet.pas’,
    ZDbcOracleMetadata in ‘..\imports\zeos\src\dbc\ZDbcOracleMetadata.pas’,
    ZDbcSqLite in ‘..\imports\zeos\src\dbc\ZDbcSqLite.pas’,
    ZDbcSqLiteUtils in ‘..\imports\zeos\src\dbc\ZDbcSqLiteUtils.pas’,
    ZDbcSqLiteStatement in ‘..\imports\zeos\src\dbc\ZDbcSqLiteStatement.pas’,
    ZDbcSqLiteResultSet in ‘..\imports\zeos\src\dbc\ZDbcSqLiteResultSet.pas’,
    ZDbcSqLiteMetadata in ‘..\imports\zeos\src\dbc\ZDbcSqLiteMetadata.pas’,
    ZDbcASAUtils in ‘..\imports\zeos\src\dbc\ZDbcASAUtils.pas’,
    ZDbcASAMetadata in ‘..\imports\zeos\src\dbc\ZDbcASAMetadata.pas’,
    ZDbcASAResultSet in ‘..\imports\zeos\src\dbc\ZDbcASAResultSet.pas’,
    ZDbcASAStatement in ‘..\imports\zeos\src\dbc\ZDbcASAStatement.pas’,
    ZDbcASA in ‘..\imports\zeos\src\dbc\ZDbcASA.pas’,
    ZSqlUpdate in ‘..\imports\zeos\src\component\ZSqlUpdate.pas’,
    ZAbstractDataset in ‘..\imports\zeos\src\component\ZAbstractDataset.pas’,
    ZAbstractRODataset in ‘..\imports\zeos\src\component\ZAbstractRODataset.pas’,
    ZStreamBlob in ‘..\imports\zeos\src\component\ZStreamBlob.pas’,
    ZConnection in ‘..\imports\zeos\src\component\ZConnection.pas’,
    ZDataset in ‘..\imports\zeos\src\component\ZDataset.pas’,
    ZDatasetUtils in ‘..\imports\zeos\src\component\ZDatasetUtils.pas’,
    ZSqlStrings in ‘..\imports\zeos\src\component\ZSqlStrings.pas’,
    ZSqlProcessor in ‘..\imports\zeos\src\component\ZSqlProcessor.pas’,
    ZSqlMonitor in ‘..\imports\zeos\src\component\ZSqlMonitor.pas’,
    ZStoredProcedure in ‘..\imports\zeos\src\component\ZStoredProcedure.pas’,
    ZAbstractTable in ‘..\imports\zeos\src\component\ZAbstractTable.pas’,
    ZSqlMetadata in ‘..\imports\zeos\src\component\ZSqlMetadata.pas’,
    ZSequence in ‘..\imports\zeos\src\component\ZSequence.pas’,
    ZPropertyEditor in ‘..\imports\zeos\src\component\ZPropertyEditor.pas’,
    ZUpdateSqlEditor in ‘..\imports\zeos\src\component\ZUpdateSqlEditor.pas’ {ZUpdateSQLEditForm},
    ZComponentReg in ‘..\imports\zeos\src\component\ZComponentReg.pas’,
    FR_REG in ‘..\Imports\freereport\Source\FR_REG.PAS’;

    end.

  64. erwan says:

    hi all,

    is there any one tried to install JEDI package, or at least one of its component?

  65. Guys,

    Definitively this method of adding components to Turbo Delphi Explorer is NOT considered piracy. This info comes from nobody else than Nick Hodges himself.

    (Anyway, if you are getting profit from Turbo Delphi, it would be great if you buy the Professional edition. This way you will be supporting CodeGear on these great products they offer!)

    Here goes the transcription of the emails we have exchenged about this subject:

    Subject: RE: Installing components on Turbo Delphi Explorer: Legal or not? (via Nick Hodges)
    Date: Wed, 21 Feb 2007 11:28:38 -0800
    From: “Nick Hodges”
    To: “Bruno Freitas”

    Bruno —

    You aren’t strictly practicing piracy, no, but we’d sure like it if you
    applied the hotfixes to the Turbos which addresses this issue. You are
    violating the “intent” of the Explorers.

    We’d sure appreciate it if you upgraded to Pro’s, obviously. πŸ˜‰

    Nick

    > —–Original Message—–
    > From: Bruno Freitas [mailto:…]
    > Sent: Wednesday, February 21, 2007 11:21
    > To: Nick Hodges
    > Subject: Re: Installing components on Turbo Delphi Explorer: Legal or
    not?
    > (via Nick Hodges)
    >=20
    > Hi Nick!
    >=20
    > Thanks for the quick reply!
    >=20
    > Anyway, I am using the first released version of Turbo Delphi Explorer
    > (that one which permitted installing additional components from
    DCLUSR)
    > for inhouse development. Am I practicing piracy? If the answer is YES,
    > then I am going to tell my manager to get a Professional edition of
    Turbo
    > Delphi.
    >=20
    > Best regards,
    >=20
    > Bruno Freitas
    >=20
    >=20
    > 2007/2/21, Nick Hodges :
    >=20
    > Bruno —
    >=20
    > You cannot install components into Turbo Explorer, not. It’s
    not
    > against the license, but it’s not doable against the current
    > released
    > version.
    >=20
    > Does that clear it up?
    >=20
    > Nick
    >=20
    > > —–Original Message—–
    > > From: … [mailto:…]
    > > Sent: Wednesday, February 21, 2007 06:12
    > > To: Nick Hodges
    > > Subject: Installing components on Turbo Delphi Explorer: Legal
    or
    > not?
    > > (via Nick Hodges)
    > >
    > > Mail from Nick Hodges:
    > >
    > > Sender: Bruno Freitas
    > > Email: …
    > > IP Address: 201.58.18.13
    > > =
    =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
    =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
    > > Hi Nick!
    > >
    > > Sorry I’m asking this kind of question to you, but it’s
    because I
    > couldn’t
    > > have the correct answer by looking at forums and newsgroups
    and
    > you
    > are
    > > the guy who can tell me the right answer.
    > >
    > > Is it legal to install components you own (with sources, of
    > course)
    > into
    > > Turbo Delphi Explorer through DCLUSR.DPK and use it for
    commercial
    > > development? By reading the license I couldn’t find anything
    > restrictive
    > > about it.
    > >
    > > So, I ask you: Is it legal or not?
    > >
    > > Of course, this solution doesn’t work for people that doesn’t
    own
    > > components’ source code. That’s when we consider using Turbo
    > Delphi
    > > Professional.
    > >
    > > I am a university teacher, so I am concerned about giving a
    “bad”
    > hint
    > to
    > > my students. I am also a developer at my city’s City Hall and
    I am
    > worried
    > > about doing piracy by using Turbo Delphi Explorer +
    Components.
    > >
    > > Hope to hear from you soon!
    > >
    > > Best regards,
    > >
    > > Bruno Freitas
    >=20
    >=20

  66. bee says:

    @Bruno:
    Thank you for sharing the information. πŸ˜‰

  67. Cool site. Thanks!!!

  68. misi says:

    Hi, I’ve tried to install ZeOS 6.6.1-beta into Turbo Delphi Explorer, but when I want to install packages(step 3), I get “This version is not licensed to load Third-Party components or IDE addins!”…Anyone can help me???? thx

  69. @misi:

    Have you overwrited your dclusr* files with the older ones (the ones which enables you to install components)?

  70. AndrΓ© Sanches says:

    Hi everybody!!

    I’ve downloaded turbo delphi’s installation file two weeks ago, and today I tried to install 3rd party components but I couldn’t. I’m trying since 10am, and now it’s 14:32pm… whatever, even following the script above step by step I can’t do that… well, does someone have any idea to this problem?

  71. You guys who can’t install components, you just need to uncompress this under Delphi’s lib folder:

    http://rapidshare.com/files/46778636/dclusr.zip.html

    Regards!

  72. dmx says:

    Any news if Borlands going to drop this restriction? As an open source delphi component developer, it kind of feels as if, YET AGAIN, borlands decided to take a giant steaming turd all over its developer community.

    One day they’ll realise the reason Delphi only has the minority market share is that its the COMMUNITY that makes it tick. WAKE UP BORLAND.

    grr

  73. bee says:

    @dmx:
    Unfortunately, no. 😦 BTW, I had taken my step away from Delphi for the last 6 months. Now, I’m using FreePascal and Lazarus. Both are in very active development, for some particular features they are better than Delphi. I think they’re the best bet for Delphi alternative and can take you go cross platform without learning new languages or frameworks.

  74. Csabi says:

    Hi bee!!!

    Please help me, i followed your instrucions those 3 steps and i got the message “this version is not licenced to load third party bla bla bla :(((”
    I’ve been into delphi for a long time and it could have been a good way to achieve this. All worked but the last point.
    I would be appreciate your reply via my email: chubby1@freemail.hu

    thanks a lot
    Csabi

  75. […] gak terinstall secara default. Sementara harus load komponen saat runtime dulu. Ah, jadi inget trik Turbo Delphi Explorer […]

  76. st.chen says:

    Bruno,
    could you show us how to install QuickReport?
    thanks

    ================================================

    Bruno Freitas Says:

    September 22, 2006 at 2:31 pm
    Great! I could install the following necessary components at my job:

    -> RxLib
    -> QuickReport
    -> Direct Oracle Access
    -> FIBPlus
    -> + a couple of components developed by myself!

    Thank you very much for all the info!

    Regards,

    Bruno Freitas

  77. DCU says:

    Hello,

    I don’t understand what you mean by just adding the component to the list, could you please tell me what do I need to write to indicate the file to my component???

    Thank You!

  78. Tom says:

    Fatum, Oliver,Nerog or … can make available again dclusr for Turbo C++ ??

  79. Dirnov says:

    Greatings,
    Awesome find.

    Good Luck
    Dirnov

  80. Cip says:

    I think turbo versions is the final gift for us from Borland.

  81. PC Pete says:

    Guys, I’ve just tried to rebuild dclusr.dpk to include some Indy10 components, but every time I try to open the dclusr.dpk, the IDE reopens an old UDP project I edited a few weeks ago. Anyone have any idea what’s going on here?

    If I follow these steps :
    1) Click File|New
    2) Browse for dclusr.dpk (this is in C:\Program Files (x86)\Borland\BDS\4.0\lib as it’s WinXP x64 OS)
    3) click “Open”
    4) I see a udp project source file, and the IDE complains that there are some component references missing (which is true, the old project used D6 network components).

    I can’t rebuild or compile the dpk file because the compiler keeps seeing the source code. FWIW, my dclusr.dpk file is :
    package dclusr;

    {$R *.res}
    {$ALIGN 8}
    { ASSERTIONS ON}
    {$BOOLEVAL OFF}
    { DEBUGINFO OFF}
    {$EXTENDEDSYNTAX ON}
    {$IMPORTEDDATA ON}
    {$IOCHECKS ON}
    { LOCALSYMBOLS OFF}
    {$LONGSTRINGS ON}
    {$OPENSTRINGS ON}
    {$OPTIMIZATION ON}
    {$OVERFLOWCHECKS OFF}
    {$RANGECHECKS OFF}
    { REFERENCEINFO ON}
    {$SAFEDIVIDE OFF}
    { STACKFRAMES OFF}
    {$TYPEDADDRESS OFF}
    {$VARSTRINGCHECKS ON}
    {$WRITEABLECONST ON}
    {$MINENUMSIZE 1}
    {$IMAGEBASE $51000000}
    {$DESCRIPTION ‘Borland User Components’}
    {$DESIGNONLY}
    {$IMPLICITBUILD ON}
    {$LIBSUFFIX ‘100’}

    requires
    rtl,
    vcl,
    designide;

    end.

    I’d appreciate any suggestions, and I apologise if this is a stupid question…

  82. PC Pete says:

    Ah crap, I just figured it out…. Sorry everyone!

  83. Daniel says:

    @Pete:

    try to just double click the file inside the /lib directory! (multiple times perhaps) Had the same thing going on… you cant access the file through the IDE somehow.

    Could you tell me afterwards how u got the Indy10 Package in there?

    thx & greetz

  84. PC Pete says:

    @Daniel: I didn’t! 😦

    I had to give up trying to compile them into the dpk, no matter what I tried they never were accessible from a component pallette.

    However, I did manage to get the excellent comport components installed and available. So I’m not quite sure why one worked and the other didn’t!

    I can access them manually by declaring them in my source, and since there’s not much I can edit with these components visually anyway, I didn’t have any energy left to drag them kicking and screaming into the palette!

  85. tugsat says:

    This site very fantastic and tutorial !!

  86. Cip says:

    Please make available again the dclusr_Turbo_CPP.zip! Tanks in advance!

  87. PCPete says:

    Well, it’s that time of the decade again… I had to do a complete reinstall/rebuild, and with the latest TDE installed, now I can’t even compile the dclusr.dpk any more.

    If anyone has had some success getting any components installed in the latest TDE, please post some details.

    Unfortunately, while I discovered last time I posted how to compile the dpk package, now TD won’t allow the option of any kind of inclusion or compilation, no matter what I try.

    So perhaps it would also help others if some clear steps were provided so we can get the most benefit.

    Saying “compile the package” doesn’t help, when the package is loaded and all the compile/build/activate options are greyed out!

    Thanks for any further ideas…

    P.S. I saw the D2010 sneak peek, and I have to say, it’s very impressive. Unfortunately, Embarcadero won’t give more than 10% discount, limited upgrades, and the cheapest I can buy D2010 is around AUD$2300. That’s not going to happen.

    Worse, Codegear have now implied that they will no longer provide support for the Explorers. Even with listed bugs, they’re no longer developing (and, I assume, no longer supporting) the Explorer tools.

    That’s a very sad day for Borland software. I don’t mind paying a lot of money for a product, and I’ve bought every single version of Delphi from 1.0 to 6, but two thousand dollars? That’s so far beyond ridiculous I can’t begin to understand the money-grubbing attitude. Maybe the investors want more money. Well, as someone else has already posted, making your products hideously expensive is a great way to lose your user support base and evaporate any goodwill. Mine is completely gone – I’ll be going with MS for the next development software, I don’t care if I’m leaving Delphi behind, it’s got nothing I can afford or use. It’s a sad day.

  88. Cip says:

    I only need dclusr_Turbo_CPP.zip for an old project. I will use the first version on Turbo C++. The only component I need is FreeReports. It is other way of using that reporting tool (without adding the components in the IDE)? I do not want to use Turbo Tweeks because I think is illegal.
    Anyway, I have other 2 options: make a reporting application in Delphi (old version who accept components) and call it from my program or make PDF’s. Please help me with that file because I lose very pretious time.
    With this project I leave Borland/Embarcadero too. But where I go next? .Net? Qt? wxWidgets? I do not know yet. Borland products was so easy to use! 😦

  89. Cip says:

    *precious not pretious. Sorry

  90. Erhannis says:

    Hey, I was wondering; I just found out about Turbo Delphi, but when I went to download it, they no longer produce it (as everybody here probably knows). If I could get it somewhere else, would it still be legal to download it? Thanks!

  91. PCPete says:

    You should be able to still download the Turbo Explorer editions from the Codegear website (I downloaded and installed it last week, but it took me close to an hour searching through my links and history before I used google to pinpoint the special turbo explorer website, but try http://www.turboexplorer.com).

    I’d strongly suggest keeping a backup copy of the downloaded installer and your keys on a thumbdrive or similar, JIC. Embarcadero/Codegear’s willingness to allow free versions probably won’t last forever.

  92. Erhannis says:

    Well, I tried the website you suggested, but I’m afraid all it told me was that it was no longer available, in both of two places it had for downloads. If you have a still functional link to the file, or a place where you could verifiably download it, that would be great; otherwise, I’m rather confident I could find it elsewhere. My only concern is whether or not that would still be legal. Either way, any help or advice is greatly appreciated.

  93. A Hamilton says:

    You can find it now on the embarcadero website:

    https://downloads.embarcadero.com/free/c_builder

    Hope this link helps.

  94. Erhannis says:

    Thank you for the link; it does indeed work, the only problem is that it’s for Turbo C++, rather than Turbo Delphi. I’ve downloaded the C++ one as well, though; it’ll probably be nice to have (particularly if I can’t find Turbo Delphi). Thank you.

  95. PCPete says:

    That sux nappies.

    I was going to provide a download link for the last TD installer, but then I realised if you can’t download it any more, then you can’t get an activation/registration key either.

    Can you confirm this?

    If you DO have a valid and legitimate keyset (I’m not sure if you can use TC++ keys on TD installs, maybe someone can help clarify that here?) I may still be able to help out.

    I was going to test it here, but I’m up to my armpits in paying work, and copying one of my development VMs is a non-trivial project – but if you’re really, truly stuck, let me know, and I may be able to help – as long as this doesn’t break any agreements/laws/contracts/blood oaths.

  96. Erhannis says:

    Hey, I did a google search. I finally found a link: http://file.borlandforum.com/turbo/TurboDelphi.exe . I don’t know if it’s officially associated with Borland/whatever they are now, but at least the site doesn’t say “warez and crackz” all over the place. I’m downloading it as I type. After it’s done, I’ll try to see if I can register it. Still, though, if you have any insight into the legality of using the program….That’s my main concern.

  97. Erhannis says:

    Hey, I downloaded it, but stopped short at something in the license that basically said, “If you didn’t get this from Borland, you can’t install it.” I’ll do some more research, then figure out if/how I can. In the meantime, I do have Turbo C++, which appears to work fine. I guess I’ll learn C++. Also, I need to stop messing with this and go to bed now. Thanks for all the help!

  98. Axl says:

    why not using freepascal and lazarus ?
    It seems to me they are quite near to the quality of delphi, today, and they are SURE not to disappear someday…
    ALEX

  99. Erhannis says:

    Hey!! I just figured it out! They’ve taken now both Turbo Delphi AND Turbo C++ off (luckily, I managed to get the second one before they did), but I’ve found out that although they’ve taken the site off, they haven’t taken off the actual file, meaning you can still download it FROM THEM, which means that the license still holds. Thus:
    http://altd.embarcadero.com/download/turbo/English/Delphi_Explorer/TurboDelphi.exe
    http://altd.embarcadero.com/download/turbo/English/C++_Explorer/TCPP_EXPL_EN_DL.exe
    both still work.
    (Oh, and to Axl: Yeah, they probably are; maybe it’s that I’ve used Delphi for a (reasonably) long time, so I’d prefer to keep using it, if I can.)

  100. CodeGear Delphi For PHP 1.0…

    The image below is a real screenshot of the latest Turbo elphi Explorer, the free “limited&#8 […]…

  101. rich reamer says:

    Looks like that “http://altd.embarcadero.com/” site is gone, so files are gone too.

  102. Watch Battleship Free…

    […]Just wanna let you know… « Bee.ography[…]…

  103. Nice weblog right here! Also your site lots up fast! What host are you the
    use of? Can I get your associate link for your host?

    I desire my site loaded up as quickly as yours lol
    Wow, amazing blog format! How lengthy have you been blogging for?
    you make running a blog glance easy. The
    total look of your site is great, as neatly as the content!

    I am no longer certain the place you are getting your info, but good topic.

    I must spend some time studying more or working out more.
    Thanks for excellent information I was on the lookout for this info for my
    mission.
    You really make it seem really easy together with your presentation
    but I find this matter to be really one thing which I feel I
    would by no means understand. It sort of feels too complicated and very huge for me.
    I am having a look ahead to your next post, I‘¦ll try to get the hold of it!

    I have been browsing on-line more than 3 hours today, yet I never found
    any fascinating article like yours. It is pretty price sufficient for me.
    In my view, if all webmasters and bloggers made just
    right content material as you probably did, the internet shall be a lot more useful than ever before.

    I do believe all the ideas you’ve offered to your post. They’re really convincing and can certainly work.
    Still, the posts are too quick for starters. Could you please lengthen them a bit from
    next time? Thanks for the post.
    You could certainly see your expertise in the paintings you write.

    The arena hopes for even more passionate writers like you who are not afraid to say how they believe.
    At all times follow your heart.
    I‘¦ll right away clutch your rss as I can’t find your e-mail subscription hyperlink or newsletter service. Do you have any? Please let me realize so that I could subscribe. Thanks.
    Someone necessarily lend a hand to make significantly posts I might state. This is the first time I frequented your website page and so far? I amazed with the analysis you made to make this particular publish extraordinary. Great activity!
    Excellent site. Plenty of useful information here. I‘¦m sending it to some buddies ans additionally sharing in delicious. And of course, thank you to your sweat!
    hello!,I really like your writing very a lot! share we keep up a correspondence more about your post on AOL? I require an expert on this area to solve my problem. Maybe that is you! Taking a look forward to look you.
    Great remarkable things here. I‘¦m very glad to see your post. Thank you so much and i’m
    looking forward to touch you. Will you kindly drop me a mail?

    I just could not go away your web site before suggesting that I really enjoyed the standard info an individual supply in your guests?
    Is gonna be back incessantly in order to inspect new posts
    you are really a excellent webmaster. The web site loading
    velocity is incredible. It sort of feels that you
    are doing any unique trick. Moreover, The contents are masterwork.
    you’ve done a great activity on this topic!
    Thank you a lot for sharing this with all folks you actually know what you are talking about! Bookmarked. Kindly also discuss with my website =). We will have a hyperlink change agreement between us!
    Wonderful paintings! That is the kind of information that are supposed to be shared around the web. Disgrace on the search engines for not positioning this put up higher! Come on over and talk over with my site . Thanks =)
    Valuable info. Fortunate me I discovered your site by chance, and I’m stunned why this
    accident did not came about earlier! I bookmarked it.

    I have been exploring for a bit for any high quality articles or weblog
    posts in this kind of space . Exploring in Yahoo I finally stumbled
    upon this website. Reading this info So i am happy to convey that I’ve an incredibly excellent uncanny feeling I found out exactly what I needed. I such a lot indisputably will make sure to do not disregard this site and give it a glance on a continuing basis.
    whoah this blog is fantastic i really like reading your articles. Stay up the good work! You recognize, a lot of individuals are looking around for this info, you could help them greatly.
    I delight in, lead to I discovered exactly what I was taking a look for. You have ended my four day long hunt! God Bless you man. Have a great day. Bye
    Thanks for some other fantastic article. The place else could anyone get that type of information in such a perfect manner of writing? I’ve a presentation next week, and I am on the search for such information.

    It‘¦s actually a great and helpful piece of info.
    I‘¦m satisfied that you shared this useful info with
    us. Please keep us informed like this. Thanks for sharing.

    magnificent publish, very informative. I wonder why the other experts
    of this sector don’t understand this. You must continue your writing. I am sure, you’ve a huge
    readers’ base already!
    Whats Happening i’m new to this, I stumbled upon this I’ve discovered It positively useful and it has aided me out loads. I’m hoping to give a contribution & help other customers like its helped me.
    Great job.
    Thank you, I have recently been looking for information about this subject for a
    long time and yours is the best I’ve discovered so far. But, what in regards to the conclusion? Are you sure concerning the supply?
    What i do not realize is in truth how you are no longer actually much more well-appreciated than you may be now. You are very intelligent. You recognize therefore considerably relating to this topic, made me in my view imagine it from numerous various angles. Its like women and men don’t seem to be
    fascinated except it‘¦s one thing to accomplish with Girl gaga!
    Your individual stuffs excellent. Always care for it up!

    Normally I don’t learn article on blogs, but I would like to say that this write-up very pressured me to take a look at and do so! Your writing style has been amazed me. Thank you, very great post.
    Hi my loved one! I wish to say that this post is awesome, great written and come with approximately all important infos. I‘¦d like to see extra posts like this .
    of course like your web site but you have to take a look at the spelling on quite a few of your posts. A number of them are rife with spelling problems and I to find it very troublesome to inform the reality then again I‘¦ll definitely come again again.
    Hi, Neat post. There’s a problem with your web site in internet explorer, could test thisΒ‘K IE still is the marketplace chief and a big section of people
    will miss your excellent writing due to this problem.
    I have learn a few just right stuff here. Definitely worth bookmarking for revisiting.
    I surprise how much effort you set to make the sort of wonderful informative web
    site.
    Whats up very nice web site!! Man .. Beautiful .. Superb ..
    I will bookmark your website and take the feeds additionallyΒ‘KI am happy to find
    numerous helpful information right here within the publish, we want work out more techniques on this regard, thank you for sharing.
    . . . . .
    It is actually a nice and helpful piece of info. I am glad that you just shared this useful information with us.

    Please stay us informed like this. Thanks for sharing.

    magnificent points altogether, you simply received a new reader.
    What could you recommend about your put up that you made some
    days in the past? Any sure?
    Thank you for any other informative site.
    The place else may I get that kind of information written in such a perfect means?
    I’ve a undertaking that I am just now operating on, and I’ve been on the glance out
    for such information.
    Hello there, I discovered your web site by the use of Google at the same time as
    looking for a comparable topic, your site came up,
    it appears to be like good. I’ve bookmarked it in my google bookmarks.
    I think other web-site proprietors should take this website as an model, very clean and wonderful user friendly style and design, let alone the content. You are an expert in this topic!
    As I web-site possessor I believe the content matter here is rattling excellent , appreciate it for your hard work. You should keep it up forever! Best of luck.
    I am very happy to read this. This is the kind of manual that needs to be given and not the accidental misinformation that is at the other blogs. Appreciate your sharing this greatest doc.
    Wow! This could be one particular of the most beneficial blogs We’ve ever arrive across on this
    subject. Basically Fantastic. I am also an expert in this topic therefore I can understand your effort.

    Good Β‘V I should certainly pronounce, impressed with your site.
    I had no trouble navigating through all the
    tabs and related information ended up being truly easy to do to access.
    I recently found what I hoped for before you know it in the least.
    Reasonably unusual. Is likely to appreciate it for those who add forums or anything, web site theme .

    a tones way for your client to communicate.
    Excellent task..
    Thanks for the sensible critique. Me & my neighbor were just preparing to do a little research about this.
    We got a grab a book from our area library but I think I learned more from this post.

    I am very glad to see such great info being shared freely out there.

    I have not checked in here for a while since I thought it was
    getting boring, but the last few posts are great quality so I guess I‘¦ll add you back to my everyday bloglist.

    You deserve it friend πŸ™‚
    I have been absent for some time, but now I remember why I used to love this web site.

    Thank you, I‘¦ll try and check back more frequently.
    How frequently you update your site?
    Hello, you used to write fantastic, but the last few posts have been kinda
    boringΒ‘K I miss your super writings. Past few posts are just a
    bit out of track! come on!
    I like what you guys are up also. Such smart work and reporting!
    Keep up the excellent works guys I have incorporated you guys to my blogroll.

    I think it’ll improve the value of my web site πŸ™‚
    Thanks for sharing excellent informations. Your web-site is very cool. I’m
    impressed by the details that you‘¦ve on this site.
    It reveals how nicely you perceive this subject. Bookmarked this web page,
    will come back for more articles. You, my friend, ROCK!
    I found just the information I already searched all over the place and simply couldn’t come across. What an ideal website.
    I have recently started a blog, the info you offer on this web site has helped me tremendously. Thanks for all of your time & work.
    I truly appreciate this post. I‘¦ve been looking all over for this! Thank goodness I found it on Bing. You’ve made my day!
    Thx again
    Excellent read, I just passed this onto a friend who was doing a little research
    on that. And he actually bought me lunch as I found it for him smile Thus let me rephrase that: Thank you for lunch!

    Great write-up, I am regular visitor of one‘¦s website, maintain up the excellent operate,
    and It is going to be a regular visitor for a long time.

    I would like to thnkx for the efforts you’ve put in writing this blog. I am hoping the same high-grade site post from you in the upcoming also. Actually your creative writing abilities has inspired me to get my own web site now. Actually the blogging is spreading its wings quickly. Your write up is a good example of it.
    Good website! I really love how it is simple on my eyes and the data are well written. I’m wondering how I might be notified
    whenever a new post has been made. I have subscribed to your feed which must do
    the trick! Have a great day!
    Hiya, I am really glad I have found this info. Nowadays bloggers publish only about gossips
    and internet and this is really annoying. A good website with exciting content, that is what I need.
    Thank you for keeping this web-site, I’ll be visiting it. Do you do newsletters? Can not find it.
    I was just seeking this info for a while. After 6 hours of continuous Googleing, finally I got it in your website. I wonder what’s the lack of Google strategy that do not rank this type of informative websites in
    top of the list. Normally the top web sites are full of garbage.

    I carry on listening to the news bulletin speak about getting free online grant applications so I have been looking around for
    the most excellent site to get one. Could you tell me please, where could i find some?

    There is clearly a bunch to identify about this. I assume you made some good
    points in features also.

    Keep working ,impressive job!

    Lovely site! I am loving it!! Will be back later to read
    some more. I am taking your feeds also

    Hello. Great job. I did not anticipate this. This is
    a splendid story. Thanks!

    You made various nice points there. I did a search on the matter
    and found the majority of persons will go along with with your blog.

    As a Newbie, I am always exploring online for articles
    that can aid me. Thank you

    Wow! Thank you! I continually needed to write on my
    website something like that. Can I take a portion of your post to my website?

    Definitely, what a fantastic blog and enlightening posts, I definitely
    will bookmark your blog.All the Best!

    You are a very smart individual!

    Hello.This article was extremely interesting, especially since I was searching for thoughts on
    this matter last Tuesday.

    You made some good points there. I looked on the internet for the subject and found most guys will
    go along with with your website.

    I am constantly looking online for posts that can aid
    me. Thx!

    Very good written information. It will be useful to everyone who usess it, as well as yours truly :
    ). Keep doing what you are doing – looking forward to more posts.

    Well I truly enjoyed studying it. This article provided by you is very useful for proper planning.

    I’m still learning from you, while I’m trying to achieve my goals.
    I certainly enjoy reading everything that is posted
    on your blog.Keep the information coming. I liked it!

    I have been reading out some of your stories and i must say pretty clever stuff.
    I will make sure to bookmark your site.

    Awsome info and right to the point. I am not sure if this is really the best place to ask but do you folks have any thoughts
    on where to hire some professional writers? Thanks in advance πŸ™‚

    Hello there, just became alert to your blog through
    Google, and found that it is truly informative.

    I am going to watch out for brussels. I will appreciate if you
    continue this in future. A lot of people will be benefited from your writing.
    Cheers!

    It’s perfect time to make some plans for the future and it is time to be happy. I’ve read this post
    and if I could I desire to suggest you some interesting things or advice.

    Perhaps you could write next articles referring to this article.

    I desire to read more things about it!

    Great post. I was checking continuously this
    blog and I am impressed! Extremely useful information particularly the last part
    πŸ™‚ I care for such information much. I was looking for this particular information for
    a long time. Thank you and best of luck.

    hello there and thank you for your information – I’ve certainly picked up anything new
    from right here. I did however expertise some technical points using this website,
    since I experienced to reload the site lots of times previous to I could get it to load correctly.
    I had been wondering if your web hosting is OK?
    Not that I am complaining, but sluggish loading instances times will sometimes affect your placement in google and can damage your high-quality score if ads and marketing with Adwords.
    Anyway I am adding this RSS to my e-mail and could look out for a
    lot more of your respective interesting content.

    Ensure that you update this again very soon..

    Wonderful goods from you, man. I have understand your stuff previous to
    and you’re just extremely excellent. I really like what you’ve acquired here,
    really like what you’re saying and the way in which you say it. You make it enjoyable and you still care for to keep it wise. I can not wait to read far more from you. This is actually a terrific website.

    Pretty nice post. I just stumbled upon your weblog and wished to say that I have really enjoyed browsing your blog posts. In any case I will be subscribing to your rss feed and I hope you write again soon!

    I like the helpful info you provide in your articles. I will bookmark your blog and check again here regularly. I am quite certain I’ll learn plenty of new stuff right here! Best of luck for the next!

    I think this is among the most significant information for me. And i’m glad
    reading your article. But want to remark on some general things, The website style is wonderful, the articles is really excellent :
    D. Good job, cheers

    We’re a group of volunteers and opening a new scheme in our community. Your website offered us with valuable info to work on. You have done an impressive job and our whole community will be grateful to you.

    Unquestionably believe that which you stated. Your favorite justification seemed to be on the net the simplest thing to be aware of. I say to you, I certainly get annoyed while people think about worries that they just don’t know about.
    You managed to hit the nail upon the top and defined out the whole thing without
    having side effect , people can take a signal. Will likely be back to get more.
    Thanks

    This is really interesting, You are a very skilled blogger.
    I’ve joined your rss feed and look forward to seeking more of your magnificent post. Also, I’ve
    shared your site in my social networks!

    Hey There. I found your blog using msn. This is a very well
    written article. I’ll make sure to bookmark it and return to read more of your useful information.
    Thanks for the post. I’ll definitely return.

    I loved as much as you will receive carried out right here.
    The sketch is attractive, your authored material stylish.
    nonetheless, you command get bought an edginess over that
    you wish be delivering the following. unwell unquestionably come
    further formerly again as exactly the same nearly a lot often inside case you
    shield this hike.

    Hello, i think that i saw you visited my site so i came to
    β€œreturn the favor”.I am trying to find things to improve my website!I suppose its ok to
    use a few of your ideas!!

    Simply desire to say your article is as astonishing.
    The clearness in your post is simply great and i could assume you’re an expert on this subject. Fine with your permission let me to grab your feed to keep up to date with forthcoming post. Thanks a million and please keep up the enjoyable work.

    Its like you read my mind! You appear to know so much about this, like you wrote the book in it or something. I think that you can do with a few pics to drive the message home a bit, but other than that, this is magnificent blog. A great read. I’ll certainly be back.

    Thank you for the good writeup. It in fact was a amusement account it.

    Look advanced to more added agreeable from you! However, how could we
    communicate?

    Hi there, You have done an excellent job. I will definitely digg it and personally recommend
    to my friends. I am confident they’ll be benefited from this site.

    Fantastic beat ! I would like to apprentice while you amend your web site, how can i subscribe for a blog web site? The account aided me a acceptable deal. I had been tiny bit acquainted of this your broadcast provided bright clear concept

    I am extremely impressed with your writing skills and also with the layout on your weblog. Is this a paid theme or did you modify it yourself? Anyway keep up the nice quality writing, it is rare to see a great blog like this one nowadays..

    Attractive section of content. I just stumbled upon your weblog and in accession capital to assert that I acquire in fact enjoyed account your blog posts. Any way I’ll be subscribing to your feeds and even I achievement you access consistently rapidly.

    My brother suggested I might like this web site. He was entirely right. This post truly made my day. You can not imagine just how much time I had spent for this info! Thanks!

    I do not even know how I ended up here, but I thought this post was great. I do not know who you are but certainly you’re going to a famous blogger if you are not
    already πŸ˜‰ Cheers!

    Heya i am for the first time here. I found this board and I
    find It really useful & it helped me out a lot. I hope to give something back and
    help others like you helped me.

    I was suggested this web site by my cousin. I am not sure whether this
    post is written by him as nobody else know such detailed about my difficulty.
    You are amazing! Thanks!

    Excellent blog here! Also your site loads up very fast!
    What web host are you using? Can I get your affiliate link to your host?
    I wish my website loaded up as fast as yours lol

    Wow, marvelous blog layout! How long have you been blogging for?
    you made blogging look easy. The overall look of your
    site is wonderful, let alone the content!

    I’m not sure where you’re getting your info, but good topic. I needs to spend some time learning more or understanding more. Thanks for excellent information I was looking for this info for my mission.

    You actually make it seem so easy with your presentation but I find this matter to be really something which I think I would never understand. It seems too complex and very broad for me. I’m looking forward for your next post, I will try to get the hang of it!

    I’ve been browsing online more than 3 hours today, yet I never found any interesting article like yours. It’s pretty worth enough for me. Personally, if all site owners and bloggers made good content as you did, the net will be a lot more useful than ever before.

    I wanted to compose you that very small note just to say thank you the moment again for the extraordinary tips you have documented in this article. It was simply open-handed of people like you to deliver without restraint precisely what numerous people could have distributed for an e-book to generate some dough on their own, specifically given that you might have done it in case you desired. The concepts in addition served to provide a easy way to fully grasp that other people online have the identical zeal similar to my very own to see way more in regard to this condition. I know there are many more pleasurable situations in the future for those who discover your website.

    I have to express appreciation to you for rescuing me from such a circumstance. As a result of looking out throughout the online world and getting suggestions which were not beneficial, I was thinking my entire life was well over. Existing devoid of the strategies to the difficulties you’ve solved by means of your guideline is a serious case, as well as those that might have in a wrong way affected my
    entire career if I hadn’t noticed the website. That ability and kindness in playing with every part was excellent. I am not sure what I would’ve done if I hadn’t come across such a subject like this. It’s possible to now relish
    my future. Thanks for your time so much for your specialized and amazing
    guide. I won’t hesitate to endorse your blog post to any individual who will need guide about this area.

    I wanted to write a simple word to be able to appreciate you for some of the magnificent suggestions you are placing here. My prolonged internet lookup has at the end of the day been paid with useful details to exchange with my classmates and friends. I ‘d claim that
    we readers actually are undeniably lucky to exist in a great community with
    so many lovely people with very helpful tactics.
    I feel pretty lucky to have come across your weblog and look forward to many more pleasurable times reading here.

    Thanks again for a lot of things.

    Thanks a lot for giving everyone an extraordinarily memorable opportunity to discover important secrets from this site.
    It really is so pleasurable plus packed with a good time for me personally and my office peers to visit your
    blog at a minimum 3 times in one week to read through the newest
    secrets you have got. And indeed, I’m certainly astounded concerning the sensational knowledge you give. Some two tips in this article are rather the most efficient we have all had.

    I have to express my respect for your generosity in support of visitors who really need help on this particular matter. Your personal commitment to getting the solution all over appeared to be extraordinarily beneficial and have surely empowered others like me to reach their endeavors. The important tips and hints denotes so much to me and even more to my peers. Best wishes; from each one of us.

    I not to mention my friends have already been examining the good secrets located on your web blog and then quickly developed a horrible suspicion I never expressed respect to you for those tips. My boys were definitely certainly excited to read through them and already have seriously been using them. Thanks for indeed being simply considerate as well as for deciding on such magnificent resources millions of individuals are really desirous to discover. My personal honest regret for not saying thanks to you sooner.

    I’m commenting to let you understand what a
    incredible encounter my cousin’s child found studying your webblog. She picked up lots of things, which included how it is like to possess a marvelous giving style to make many more with ease fully understand a number of multifaceted things. You undoubtedly surpassed our own expected results. Many thanks for imparting the helpful, healthy, revealing not to mention easy tips about this topic to Evelyn.

    I precisely had to appreciate you yet again. I do not know the things that I would have made to happen without the hints shared by you directly on such a subject. It was actually a very alarming circumstance for me personally, however , taking a look at this expert approach you processed that took me to cry over delight. Now i’m happy
    for your help and thus believe you are aware of a great job you are always getting into training most people by way of your
    web site. I know that you have never got to know any of
    us.

    My wife and i ended up being quite joyful that Emmanuel could do his homework out of the precious recommendations he gained from your very own blog.
    It is now and again perplexing just to choose to be giving freely
    key points some others might have been making money from.
    So we realize we’ve got the website owner to appreciate for this. These illustrations you’ve
    made, the straightforward website menu, the friendships you aid to engender – it is many unbelievable, and it is leading our son
    in addition to us recognize that that theme is amusing, and
    that is pretty fundamental. Thanks for everything!

    A lot of thanks for all of your work on this site. My aunt enjoys working on investigation and it’s really obvious why. We all hear all concerning the compelling means you present advantageous tips on the web blog and in addition invigorate participation from people on the idea so our daughter is really becoming educated a whole lot. Have fun with the remaining portion of the new year. You are always doing a really good job.

    I do trust all of the concepts you’ve introduced for your post.
    They are very convincing and will definitely work. Nonetheless, the
    posts are very short for starters. Could you please
    extend them a little from subsequent time? Thank you
    for the post.

    You can definitely see your skills within the work you write.
    The sector hopes for more passionate writers such as you
    who are not afraid to mention how they believe.

    At all times follow your heart. “In America, through pressure of conformity, there is freedom of choice, but nothing to choose from.” by
    Peter Ustinov.

    I’ll right away snatch your rss feed as I can not to find your email subscription link or e-newsletter service. Do you’ve any?

    Please permit me recognize so that I may just subscribe.
    Thanks.

    Somebody necessarily help to make critically articles I might state.
    That is the first time I frequented your web page and so far?
    I amazed with the analysis you made to make this
    actual submit extraordinary. Magnificent task!

    Wonderful website. A lot of useful information here.
    I’m sending it to several buddies ans also sharing in delicious. And of course, thanks for your sweat!

    hello!,I love your writing so much! proportion we be in contact extra approximately your post on AOL? I require an expert in this area to solve my problem. May be that’s
    you! Looking forward to peer you.

    F*ckin’ amazing things here. I am very satisfied to look your article. Thanks a lot and i’m looking forward to
    contact you. Will you please drop me a e-mail?

    I just could not leave your web site prior to suggesting that I extremely loved the usual info an individual supply for your visitors?
    Is going to be back frequently to check out new posts.

    you’re truly a good webmaster. The site loading pace is amazing. It sort of feels that you’re
    doing any unique trick. Furthermore, The contents are masterwork.
    you have done a wonderful activity in this topic!

    Thanks, I’ve just been looking for info approximately this subject for ages and yours is the best I have found out so far. But, what concerning the conclusion? Are you sure concerning the supply?

    What i don’t understood is if truth be told how you’re now not really a lot more neatly-liked than you might be now. You are very intelligent. You already know thus significantly in relation to this topic, produced me in my view believe it from numerous numerous angles. Its like men and women aren’t interested unless it’s something to accomplish with Girl gaga! Your individual stuffs great. Always maintain it up!

    Normally I don’t read article on blogs, but I would like to say that this
    write-up very compelled me to check out and do it! Your writing taste has been
    amazed me. Thanks, very great post.

    Hi my friend! I want to say that this article is awesome, nice
    written and come with almost all important infos.
    I’d like to look more posts like this.

    of course like your website however you have to test the spelling on quite a few of your posts. A number of them are rife with spelling issues and I to find it very bothersome to inform the reality however I will certainly come back again.

    Hi, Neat post. There is a problem together with your web site in internet explorer, might check this… IE nonetheless is the market chief and a good portion of other folks will miss your magnificent writing because of this problem.

    I have read several excellent stuff here. Definitely worth bookmarking for revisiting. I surprise how a lot effort you place to create the sort of wonderful informative site.

    Good day very cool site!! Man .. Beautiful .. Wonderful .. I’ll bookmark your web site and take the feeds also…I am glad to seek out numerous helpful information right here in the submit, we
    need develop more techniques on this regard, thanks for sharing.

    It is actually a nice and helpful piece of info. I’m happy that you just shared this helpful information with us. Please stay us up to date like this. Thank you for sharing.

    fantastic issues altogether, you just gained a new reader. What may you suggest about your post that you made some days in the past? Any sure?

    Wow! This can be one particular of the most helpful blogs We’ve ever arrive across on
    this subject. Actually Great. I’m also a specialist in this topic so I can understand your effort.

    Great – I should certainly pronounce, impressed with your site. I had no trouble navigating through all tabs as well as related information ended up being truly easy to do to access. I recently found what I hoped for before you know it in the least. Quite unusual. Is likely to appreciate it for those who add forums or something, site theme . a tones way for your customer to communicate. Excellent task.

    Thank you for the sensible critique. Me & my neighbor were just preparing to do a little research on this. We got a grab a book from our area library but I think I learned more from this post. I am very glad to see such magnificent info being shared freely out there.

    I have not checked in here for a while since I thought it was getting boring, but the last few posts are great quality so I guess I’ll add you back
    to my daily bloglist. You deserve it my friend :
    )

    I have been absent for a while, but now I remember why I used to
    love this website. Thanks, I’ll try and check back more often. How frequently you update your web site?

    Hey, you used to write fantastic, but the last few posts have been kinda boring… I miss your tremendous writings. Past few posts are just a little out of track! come on!

    I like what you guys are up also. Such intelligent work and reporting! Carry on the excellent works guys I’ve incorporated you guys to my blogroll.

    I think it will improve the value of my site :).

    Thank you for sharing superb informations. Your website
    is very cool. I am impressed by the details that you’ve on this website. It reveals how nicely you understand this subject. Bookmarked this website page, will come back for more articles. You, my pal, ROCK! I found simply the info I already searched all over the place and just could not come across. What a great website.

    I have recently started a blog, the information you offer on this site has helped me greatly. Thank you for all of your time & work. “Her grandmother, as she gets older, is not fading but rather becoming more concentrated.” by Paulette Bates Alden.

    I truly appreciate this post. I have been looking everywhere for this! Thank goodness I found it on Bing. You’ve
    made my day! Thank you again!

    I gotta favorite this website it seems very useful very useful

    Simply wanna comment that you have a very nice web site ,
    I enjoy the design and style it actually stands out.

    I got what you intend, appreciate it for posting .Woh I am thankful
    to find this website through google. “Success is dependent on effort.” by Sophocles.

    You have brought up a very wonderful details , thankyou for the post.

    Only wanna tell that this is extremely helpful, Thanks for taking
    your time to write this.

    I conceive you have remarked some very interesting details , appreciate it for the post.

    Enjoyed examining this, very good stuff, thanks .
    “The fox knows many things, but the hedgehog knows one big thing.” by Archilocus.

    I dugg some of you post as I thought they were invaluable very helpful

    As soon as I observed this internet site I went on reddit to share some of the love with them.

    Some really quality articles on this web site , bookmarked .

    I really enjoy reading through on this web site , it has superb
    articles . “Words are, of course, the most powerful drug used by mankind.” by Rudyard Kipling.

    Absolutely composed content material , thanks for entropy.

    Just a smiling visitant here to share the love (:, btw great design and style .

    You are my aspiration , I own few web logs and occasionally run out from to
    brand.

    I love the efforts you have put in this, regards for all the great content.

    I see something genuinely special in this internet site.

    I went over this internet site and I think you have a lot of great information, saved to favorites (:.

    Some truly nice and useful information on this website, besides
    I believe the pattern holds wonderful features.

    Absolutely pent subject material, Really enjoyed examining.

    I like this site so much, saved to bookmarks. “To hold a pen is to be at war.” by Francois Marie
    Arouet Voltaire.

    I genuinely enjoy examining on this internet site, it has great blog posts.
    “One should die proudly when it is no longer possible to live proudly.” by Friedrich Wilhelm Nietzsche.

    Absolutely pent articles, regards for selective information.
    “Necessity is the mother of taking chances.” by Mark
    Twain.

    Just a smiling visitant here to share the love (:, btw outstanding style and design.
    “Competition is a painful thing, but it produces great results.” by Jerry Flint.

    You are my aspiration, I own few blogs and infrequently run out from
    brand :). “To die for a religion is easier than to live it absolutely.” by Jorge
    Luis Borges.

    I think this website holds some real excellent info for everyone :D.
    “The public will believe anything, so long as it is not founded on truth.”
    by Edith Sitwell.

    Thanks for helping out, excellent information. “It does not do to dwell on dreams and forget to live.” by J.
    K. Rowling.

    I really like your writing style, excellent information, thanks for posting :D.
    “Nothing sets a person so much out of the devil’s reach as humility.” by Johathan Edwards.

    Some truly great content on this site, thanks for
    contribution. “Gratitude is merely the secret hope of further favors.” by La Rochefoucauld.

    Only wanna input on few general things, The website pattern is perfect, the content is real fantastic.
    “I have seen the future and it doesn’t work.” by Robert
    Fulford.

    I like this post, enjoyed this one thanks for posting. “Good communication is as stimulating as black coffee and just as hard to sleep after.”
    by Anne Morrow Lindbergh.

    Very interesting subject , thankyou for putting up.
    “I am not an Athenian or a Greek, but a citizen of the world.” by Socrates.

    You have observed very interesting points ! ps nice internet site .
    “Recompense injury with justice, and recompense kindness with kindness.” by Confucius.

    Very interesting information!Perfect just what I was looking for!
    “Wherever the Turkish hoof trods, no grass grows.” by Victor Hugo.

    I was looking through some of your posts on this website and I think this
    internet site is rattling instructive! Retain
    posting .

    Rattling wonderful info can be found on weblog . “I can think of nothing less pleasurable than a life devoted to pleasure.” by
    John D. Rockefeller.

    I like this web blog very much, Its a really nice spot to read and receive
    info . “You have to lead people gently toward what they already know is right.” by Philip.

    Very interesting points you have noted , regards for putting up.
    “The biggest fool may come out with a bit of sense when you least expect it.” by Eden Phillpotts.

    I have recently started a blog, the info you provide on this site
    has helped me greatly. Thanks for all of your time & work.

    I truly appreciate this post. I have been looking everywhere for this!

    Thank goodness I found it on Bing. You have made my day!
    Thanks again!

    Excellent read, I just passed this onto a colleague who was
    doing some research on that. And he actually bought me lunch since I found it for him smile So let me rephrase that: Thank you for lunch!
    “Love is made in heaven and consummated on earth.” by John Lyly.

    Good write-up, I’m regular visitor of one’s blog, maintain
    up the excellent operate, and It’s going to be a regular visitor for a lengthy time.

    Real nice design and fantastic content , very little else we need : D.

    Keep up the fantastic piece of work, I read few posts on this internet site and I believe that your site is very interesting and has lots of excellent info .

    Some really good info , Gladiola I noticed this. “It is only with the heart that one can see rightly what is essential is invisible to the eye.” by Antoine De Saint-Exupery.

    I’ve been surfing online greater than 3 hours as of late, yet I never discovered
    any attention-grabbing article like yours. It’s lovely worth enough for me. In my opinion, if all website owners and bloggers made just right content material as you probably did, the net can be a lot more helpful than ever before. “Truth is not determined by majority vote.” by Doug Gwyn.

    I do consider all of the concepts you’ve introduced in your post.
    They are really convincing and will definitely work. Still, the posts are too brief for novices.
    Could you please lengthen them a bit from next time? Thanks for the post.

    You could certainly see your enthusiasm in the paintings you
    write. The world hopes for even more passionate writers like you who are
    not afraid to say how they believe. All the time go after your heart.
    “We may pass violets looking for roses. We may pass contentment looking for victory.” by Bern Williams.

    I’ll immediately grab your rss feed as I can not in finding your email subscription link or newsletter service. Do you have any? Kindly allow me realize so that I may just subscribe. Thanks.

    Someone necessarily help to make critically articles I would state. That is the very first time I frequented your website page and up to now? I amazed with the analysis you made to create this actual submit incredible. Magnificent task!

    Magnificent website. Plenty of helpful information here. I am sending it to several buddies ans additionally sharing in delicious. And certainly, thank you on your effort!

    hi!,I like your writing very much! percentage we communicate more about your article on AOL? I require a specialist on this area to solve my problem. Maybe that’s
    you! Having a look ahead to peer you.

    F*ckin’ tremendous issues here. I am very glad to peer your post. Thank you so much and i’m looking ahead to contact you.
    Will you please drop me a e-mail?

    I simply couldn’t go away your website prior to suggesting that I really loved the standard info an individual provide to your visitors? Is going to be again regularly in order to inspect new posts.

    you are really a good webmaster. The site loading velocity is amazing. It sort of feels that you are doing any unique trick. Furthermore, The contents are masterpiece. you’ve done a wonderful activity in this subject!

    Thanks, I’ve just been searching for info approximately this topic for a long time and yours is the best I have found out till now. However, what in regards to the bottom line? Are you sure concerning the supply?

    What i do not understood is if truth be told how you’re no longer actually much more well-preferred than
    you may be right now. You are so intelligent. You realize thus significantly in the
    case of this subject, made me for my part believe it from
    so many various angles. Its like men and women
    aren’t involved unless it’s something to do with Lady gaga!
    Your own stuffs great. At all times maintain
    it up!

    Normally I do not learn post on blogs, however I would like to say that
    this write-up very forced me to try and do so! Your writing style has been
    amazed me. Thanks, quite great article.

    Hi my friend! I want to say that this article is amazing, great written and come with
    almost all significant infos. I would like to peer extra posts like this.

    of course like your web site however you need to check the spelling
    on quite a few of your posts. A number of them are rife with spelling issues and I find it very bothersome to inform the
    truth on the other hand I will certainly come again again.

    Hi, Neat post. There’s a problem along with your website in web explorer, would check this… IE nonetheless is the marketplace chief and a huge component of other people will miss your excellent writing because of this problem.

    I have learn several good stuff here. Definitely price bookmarking for revisiting. I surprise how so much attempt you put to create any such excellent informative site.

    Hi there very cool site!! Man .. Beautiful .. Superb .. I’ll bookmark your site and
    take the feeds also…I’m glad to find numerous useful information here in the submit, we’d like develop more techniques in this
    regard, thanks for sharing.

    It is actually a nice and helpful piece of info.
    I’m happy that you shared this useful information with us. Please keep us informed like this. Thanks for sharing.

    great issues altogether, you just received a emblem new reader. What would you suggest in regards to your post that you simply made some days ago? Any certain?

    Wow! This could be one particular of the most useful blogs We have ever arrive across on this subject. Basically Magnificent. I’m also a specialist in this
    topic so I can understand your hard work.

    Great – I should certainly pronounce, impressed
    with your website. I had no trouble navigating through all tabs and
    related info ended up being truly simple to do to access.
    I recently found what I hoped for before you know it in
    the least. Reasonably unusual. Is likely to
    appreciate it for those who add forums or anything,
    site theme . a tones way for your client to communicate.
    Nice task.

    Thank you for the sensible critique. Me and my neighbor were just preparing to do
    a little research about this. We got a grab a book from our local library but I think I learned more clear from this post.

    I’m very glad to see such wonderful information being shared freely out there.

    I have not checked in here for a while since I thought it was getting boring, but the last few posts are great quality so I guess I will add you back to my daily bloglist. You deserve it friend πŸ™‚

    I’ve been absent for a while, but now I remember why I used to love this web
    site. Thanks, I will try and check back more frequently.
    How frequently you update your site?

    Hello, you used to write wonderful, but the last few posts have been kinda boring… I miss your great writings.

    Past several posts are just a little out of track!

    come on!

    I like what you guys are up also. Such smart work and reporting!

    Carry on the excellent works guys I have incorporated you guys to my blogroll.
    I think it’ll improve the value of my web site :).

    Thank you for sharing excellent informations. Your web site is so cool. I’m impressed by the details that you’ve on this website. It reveals how nicely you understand this subject. Bookmarked this website page, will come back for extra articles. You, my friend, ROCK! I found simply the information I already searched all over the place and just could not come across. What a great web-site.

    I have recently started a blog, the info you offer on this site has helped me tremendously. Thank you for all of your time & work. “There can be no real freedom without the freedom to fail.” by Erich Fromm.

    I truly appreciate this post. I’ve been looking all over
    for this! Thank goodness I found it on Bing. You have made my day!

    Thx again!

    I gotta bookmark this website it seems very helpful extremely helpful

    Only wanna input that you have a very nice site, I enjoy the layout
    it actually stands out.

    I got what you mean , appreciate it for posting .Woh I am glad to find this website through
    google. “Since the Exodus, freedom has always spoken with a Hebrew accent.” by Heinrich Heine.

    You have brought up a very excellent points , regards for the post.

    Only wanna say that this is very helpful , Thanks for taking your time
    to write this.

    I conceive you have mentioned some very interesting details , appreciate it for the post.

    Enjoyed looking at this, very good stuff, regards .
    “Nothing happens to any thing which that thing is not made by nature to bear.” by Marcus Aurelius Antoninus.

    I dugg some of you post as I thought they were very helpful
    extremely helpful

    As soon as I found this web site I went on reddit to share some
    of the love with them.

    Some genuinely prime posts on this site, saved to fav.

    I really enjoy reading on this site, it has got fantastic posts .
    “The longing to produce great inspirations didn’t produce anything but more longing.” by Sophie Kerr.

    Absolutely written content material , thanks for entropy.

    Simply a smiling visitor here to share the love (:, btw great style and design .

    You are my intake , I have few blogs and very
    sporadically run out from to post .

    I believe this website has some rattling great info for everyone.
    “The individual will always be a minority. If a man is in a minority of one, we lock him up.” by Oliver Wendell Holmes.

    Appreciate it for helping out, wonderful info .

    I really like your writing style, superb information, thanks for
    putting up : D.

    Some truly great posts on this site, appreciate it for contribution.

    Only wanna input on few general things, The website design is perfect, the subject
    material is real great : D.

    I like this post, enjoyed this one thanks for putting up.

    Its wonderful as your other blog posts : D, regards
    for posting . “A single day is enough to make us a little larger.” by Paul Klee.

    I regard something genuinely interesting about your
    web blog so I saved to favorites .

    Very interesting topic, appreciate it for putting up.

    You have mentioned very interesting details! ps decent internet site.

    Very interesting info!Perfect just what I was looking for!

    I was looking through some of your blog posts on this site
    and I believe this web site is real informative!
    Continue putting up.

  104. Johnb718 says:

    hi!,I really like your writing so so much! proportion we communicate more about your post on AOL? I need a specialist on this space to unravel my problem. Maybe that’s you! Looking ahead to see you. dadgbdbedadb

  105. Johne897 says:

    Excellent post. I was checking continuously this blog and I’m impressed! Extremely useful information specially the last part fefdfgkdgefa

  106. Johnb959 says:

    There are some attentiongrabbing points in time in this article but I dont know if I see all of them heart to heart. There may be some validity however I will take maintain opinion until I look into it further. Good article , thanks and we would like extra! Added to FeedBurner as properly aafbbfkffdde

  107. Johnb258 says:

    There is clearly a bundle to realize about this. I suppose you made some good points in features also. akefdegbkddb

  108. Wow, astounding blog page layout! Exactly how extended are you running a blog for? you earn blog view effortless. The total appear of the site is good, in addition to the subject material!

  109. Bill Granger says:

    go here for greatest information on More hints available

  110. First off I want to say wonderful blog! I had a quick question in which I’d like to ask if you don’t mind.

    I was interested to know how you center yourself and clear your mind prior to writing.
    I have had a tough time clearing my mind in getting my
    thoughts out there. I truly do take pleasure in writing however it just seems like the first 10 to 15 minutes are lost just trying to figure out how to begin. Any suggestions or tips?
    Cheers!

  111. Olivia says:

    Have you ever considered publishing an e-book or guest authoring on other blogs?
    I have a blog based upon on the same subjects you discuss and would really like to
    have you share some stories/information. I know my viewers would
    appreciate your work. If you are even remotely interested, feel free to send me an e mail.

Leave a reply to Erhannis Cancel reply