PDA

View Full Version : Delphi SDK Download



Petr Schreiber
15-02-2006, 11:30
This SDK is out of date due to latest improvements. See official Delphi SDK download post. Thanks
_________________________________________________

Hi,

this topic contains the download of SDK for Delphi 6 Personal.

The current version of hte SDK is the first one, so it is not as perfect as I wish, but don't worry, I'm working on it.

You can already compile your own modules for thinBASIC with this SDK.

Package contains:

template Delphi project + include file
simple thinBASIC script to test the functionality
recomended resource file


Any suggestions are welcome!


Thanks,
Petr

Petr Schreiber
15-02-2006, 11:37
Tips to make it work

1) Get Borland Delphi 6 Personal
( Delphi 7 should be ok too, lower versions were not tested )
Just checked Borland's web, no Delphi 6 or 7 to download !?
Here is the link where you can download Delphi 2005 Trial
http://www.borland.com/downloads/download_delphi.html

OR you can try luck on the following links, from Borlands site in Poland:

Delphi 7 Personal ( about 60MB ) (http://www.borland.pl/downloads/delphi_7_personal/Delphi7_Personal.zip)
Delphi 6 Personal ( about 140MB ) (http://www.borland.pl/downloads/delphi6personal/delphi6personal.exe)



2) Create new Delphi DLL project ( as clone of bundled "thinbasic_MyDelphi.dpr" )
Keep the name format as "thinbasic_<NameOfYourModule>.dpr"

3) Make sure you have the latest copy of "thinCore.pas" in the same directory

4) Press CTRL-F9 to build the DLL

5) Move created DLL to the LIB directory of thinBASIC installation

6) Bind your module to your script application using


USES "MyModule" ' That will work for thinbasic_MyModule.DLL


7) Start your work in thinBASIC using your own module !